Home
last modified time | relevance | path

Searched refs:GetEnvironment (Results 1 – 25 of 25) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBLaunchInfo.cpp22 : ProcessLaunchInfo(), m_envp(GetEnvironment().getEnvp()) {} in SBLaunchInfoImpl()
25 void RegenerateEnvp() { m_envp = GetEnvironment().getEnvp(); } in RegenerateEnvp()
106 return m_opaque_sp->GetEnvironment().size(); in GetNumEnvironmentEntries()
118 m_opaque_sp->GetEnvironment().insert(env.begin(), env.end()); in SetEnvironmentEntries()
120 m_opaque_sp->GetEnvironment() = env; in SetEnvironmentEntries()
H A DSBProcess.cpp140 launch_info.GetEnvironment() = Environment(envp); in RemoteLaunch()
H A DSBTarget.cpp339 launch_info.GetEnvironment() = Environment(envp); in Launch()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcessInfo.h85 Environment &GetEnvironment() { return m_environment; } in GetEnvironment() function
86 const Environment &GetEnvironment() const { return m_environment; } in GetEnvironment() function
H A DPlatform.h622 virtual Environment GetEnvironment();
H A DTarget.h118 Environment GetEnvironment() const;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp191 info.GetEnvironment() = Host::GetEnvironment(); in handle_launch()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHost.h242 static Environment GetEnvironment();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp126 Environment env = info.GetEnvironment(); in ChildFunc()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/openbsd/
H A DHost.cpp41 Environment Host::GetEnvironment() { in GetEnvironment() function in Host
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/freebsd/
H A DHost.cpp238 Environment Host::GetEnvironment() { return Environment(environ); } in GetEnvironment() function in Host
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/netbsd/
H A DHost.cpp44 Environment Host::GetEnvironment() { return Environment(environ); } in GetEnvironment() function in Host
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h84 lldb_private::Environment GetEnvironment() override;
H A DPlatformPOSIX.cpp669 Environment PlatformPOSIX::GetEnvironment() { in GetEnvironment() function in PlatformPOSIX
672 return m_remote_platform_sp->GetEnvironment(); in GetEnvironment()
675 return Host::GetEnvironment(); in GetEnvironment()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1517 launch_info.GetEnvironment().erase("OS_ACTIVITY_DT_MODE"); in FilterLaunchInfo()
1521 launch_info.GetEnvironment()["IDE_DISABLED_OS_ACTIVITY_DT_MODE"] = "1"; in FilterLaunchInfo()
1534 launch_info.GetEnvironment()["OS_ACTIVITY_MODE"] = env_var_value; in FilterLaunchInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1169 launch_info.GetEnvironment() = Host::GetEnvironment(); in StartDebugserverProcess()
H A DGDBRemoteCommunicationServerCommon.cpp948 m_process_launch_info.GetEnvironment().insert(packet.Peek()); in Handle_QEnvironment()
962 m_process_launch_info.GetEnvironment().insert(str); in Handle_QEnvironmentHexEncoded()
H A DProcessGDBRemote.cpp941 m_gdb_comm.SendEnvironment(launch_info.GetEnvironment()); in DoLaunch()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp3533 Environment env = platform_sp->GetEnvironment(); in GetHostEnvironmentIfNeeded()
3810 Environment TargetProperties::GetEnvironment() const { in GetEnvironment() function in TargetProperties
3822 m_launch_info.GetEnvironment() = std::move(env); in SetEnvironment()
4070 SetEnvironment(launch_info.GetEnvironment()); in SetProcessLaunchInfo()
4122 this_->m_launch_info.GetEnvironment() = this_->GetEnvironment(); in EnvVarsValueChangedCallback()
H A DPlatform.cpp1538 Environment Platform::GetEnvironment() { return Environment(); } in GetEnvironment() function in Platform
H A DProcess.cpp520 launch_info.GetEnvironment().insert(option_arg); in SetOptionValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectProcess.cpp199 m_options.launch_info.GetEnvironment() = target->GetEnvironment(); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp416 m_gdb_client.SendEnvironment(launch_info.GetEnvironment()); in LaunchProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp407 launch_info.GetEnvironment(), stdin_file_spec, stdout_file_spec, in DoLaunch()
H A DProcessMonitor.cpp849 (args->m_env.empty() ? Host::GetEnvironment() : args->m_env).getEnvp(); in Launch()