Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBLaunchInfo.cpp28 SBLaunchInfoImpl() : m_envp(GetEnvironment().getEnvp()) {} in SBLaunchInfoImpl()
31 void RegenerateEnvp() { m_envp = GetEnvironment().getEnvp(); } in RegenerateEnvp()
172 return m_opaque_sp->GetEnvironment().size(); in GetNumEnvironmentEntries()
193 m_opaque_sp->GetEnvironment().insert_or_assign(KV.first(), KV.second); in SetEnvironment()
195 m_opaque_sp->GetEnvironment() = refEnv; in SetEnvironment()
199 SBEnvironment SBLaunchInfo::GetEnvironment() { in GetEnvironment() function in SBLaunchInfo
201 return SBEnvironment(Environment(m_opaque_sp->GetEnvironment())); in GetEnvironment()
H A DSBPlatform.cpp686 SBEnvironment SBPlatform::GetEnvironment() { in GetEnvironment() function in SBPlatform
691 return SBEnvironment(platform_sp->GetEnvironment()); in GetEnvironment()
H A DSBTarget.cpp369 launch_info.GetEnvironment() = Environment(envp); in Launch()
372 launch_info.GetEnvironment() = default_launch_info.GetEnvironment(); in Launch()
2353 SBEnvironment SBTarget::GetEnvironment() { in GetEnvironment() function in SBTarget
2357 return SBEnvironment(target_sp->GetEnvironment()); in GetEnvironment()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.cpp202 Environment emulator_env = Host::GetEnvironment(); in DebugProcess()
207 launch_info.GetEnvironment() = ComputeLaunchEnvironment( in DebugProcess()
208 std::move(launch_info.GetEnvironment()), std::move(emulator_env)); in DebugProcess()
246 Environment PlatformQemuUser::GetEnvironment() { in GetEnvironment() function in PlatformQemuUser
247 Environment env = Host::GetEnvironment(); in GetEnvironment()
H A DPlatformQemuUser.h62 Environment GetEnvironment() override;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp226 Environment RemoteAwarePlatform::GetEnvironment() { in GetEnvironment() function in RemoteAwarePlatform
228 return m_remote_platform_sp->GetEnvironment(); in GetEnvironment()
229 return Platform::GetEnvironment(); in GetEnvironment()
H A DTarget.cpp4609 Environment platform_env = platform_sp->GetEnvironment(); in ComputeEnvironment()
4629 Environment TargetProperties::GetEnvironment() const { in GetEnvironment() function in TargetProperties
4648 Environment platform_environment = platform_sp->GetEnvironment(); in GetInheritedEnvironment()
5016 SetEnvironment(launch_info.GetEnvironment()); in SetProcessLaunchInfo()
5067 m_launch_info.GetEnvironment() = ComputeEnvironment(); in EnvVarsValueChangedCallback()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp112 Environment Host::GetEnvironment() { return Environment(environ); } in GetEnvironment() function in Host
445 launch_info.GetEnvironment() = Host::GetEnvironment(); in RunShellCommand()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h88 Environment &GetEnvironment() { return m_environment; } in GetEnvironment() function
89 const Environment &GetEnvironment() const { return m_environment; } in GetEnvironment() function
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBLaunchInfo.h157 SBEnvironment GetEnvironment();
H A DSBPlatform.h179 SBEnvironment GetEnvironment();
H A DSBTarget.h125 SBEnvironment GetEnvironment();
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp138 launch_info.GetEnvironment().insert(option_arg); in SetOptionValue()
H A DCommandObjectProcess.cpp214 Environment target_env = target->GetEnvironment(); in DoExecute()
215 m_options.launch_info.GetEnvironment().insert(target_env.begin(), in DoExecute()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp158 info.GetEnvironment() = Host::GetEnvironment(); in handle_launch()
H A Dlldb-platform.cpp309 launch_info.GetEnvironment() = Host::GetEnvironment(); in spawn_process()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h85 lldb_private::Environment GetEnvironment() override;
H A DPlatform.h626 virtual Environment GetEnvironment();
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHost.h271 static Environment GetEnvironment();
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp251 envp(info.GetEnvironment().getEnvp()), actions(MakeForkActions(info)) {} in ForkLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1441 launch_info.GetEnvironment().erase("OS_ACTIVITY_DT_MODE"); in FilterLaunchInfo()
1445 launch_info.GetEnvironment()["IDE_DISABLED_OS_ACTIVITY_DT_MODE"] = "1"; in FilterLaunchInfo()
1458 launch_info.GetEnvironment()["OS_ACTIVITY_MODE"] = env_var_value; in FilterLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp893 Environment host_env = Host::GetEnvironment(); in StartDebugserverProcess()
943 launch_info.GetEnvironment() = host_env; in StartDebugserverProcess()
H A DGDBRemoteCommunicationServerCommon.cpp983 m_process_launch_info.GetEnvironment().insert(packet.Peek()); in Handle_QEnvironment()
997 m_process_launch_info.GetEnvironment().insert(str); in Handle_QEnvironmentHexEncoded()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2236 Environment GetEnvironment() { in GetEnvironment() function in lldb_private::curses::EnvironmentVariableListFieldDelegate
3434 void GetEnvironment(ProcessLaunchInfo &launch_info) { in GetEnvironment() function in lldb_private::curses::ProcessLaunchFormDelegate
3436 m_target_environment_field->GetEnvironment(); in GetEnvironment()
3438 m_inherited_environment_field->GetEnvironment(); in GetEnvironment()
3439 launch_info.GetEnvironment().insert(target_environment.begin(), in GetEnvironment()
3441 launch_info.GetEnvironment().insert(inherited_environment.begin(), in GetEnvironment()
3530 GetEnvironment(launch_info); in GetLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp354 m_gdb_client_up->SendEnvironment(launch_info.GetEnvironment()); in LaunchProcess()

12