reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/API/SBLaunchInfo.cpp
   22       : ProcessLaunchInfo(), m_envp(GetEnvironment().getEnvp()) {}
   25   void RegenerateEnvp() { m_envp = GetEnvironment().getEnvp(); }
  156   return m_opaque_sp->GetEnvironment().size();
  174     m_opaque_sp->GetEnvironment().insert(env.begin(), env.end());
  176     m_opaque_sp->GetEnvironment() = env;
tools/lldb/source/API/SBProcess.cpp
  156         launch_info.GetEnvironment() = Environment(envp);
tools/lldb/source/API/SBTarget.cpp
  378       launch_info.GetEnvironment() = Environment(envp);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  197     m_options.launch_info.GetEnvironment().insert(target_env.begin(),
tools/lldb/source/Host/linux/Host.cpp
  201     process_info.GetEnvironment().insert(Var);
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
 1254     if (launch_info.GetEnvironment().lookup("COMMAND_MODE") == "legacy")
 1594       const Environment &env = proc_info.GetEnvironment();
 1684   auto &env_vars = launch_info.GetEnvironment();
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  403   m_gdb_client.SendEnvironment(launch_info.GetEnvironment());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
 1153     launch_info.GetEnvironment() = host_env;
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  954     m_process_launch_info.GetEnvironment().insert(packet.Peek());
  968     m_process_launch_info.GetEnvironment().insert(str);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  904       m_gdb_comm.SendEnvironment(launch_info.GetEnvironment());
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
 1464     launch_info.GetEnvironment().erase("OS_ACTIVITY_DT_MODE");
 1468     launch_info.GetEnvironment()["IDE_DISABLED_OS_ACTIVITY_DT_MODE"] = "1";
 1481   launch_info.GetEnvironment()["OS_ACTIVITY_MODE"] = env_var_value;
tools/lldb/source/Target/Process.cpp
  355     launch_info.GetEnvironment().insert(option_arg);
tools/lldb/source/Target/Target.cpp
 3698   m_launch_info.GetEnvironment() = std::move(env);
 4019   this_->m_launch_info.GetEnvironment() = this_->GetEnvironment();
tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  189   info.GetEnvironment() = Host::GetEnvironment();
tools/lldb/unittests/tools/lldb-server/tests/TestClient.cpp
  101   Info.GetEnvironment() = Host::GetEnvironment();