| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBLaunchInfo.cpp | 27 : ProcessLaunchInfo(), m_envp(GetEnvironment().getEnvp()) {} in SBLaunchInfoImpl() 30 void RegenerateEnvp() { m_envp = GetEnvironment().getEnvp(); } in RegenerateEnvp() 175 return m_opaque_sp->GetEnvironment().size(); in GetNumEnvironmentEntries() 199 m_opaque_sp->GetEnvironment().insert_or_assign(KV.first(), KV.second); in SetEnvironment() 201 m_opaque_sp->GetEnvironment() = refEnv; in SetEnvironment() 205 SBEnvironment SBLaunchInfo::GetEnvironment() { in GetEnvironment() function in SBLaunchInfo 206 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBEnvironment, SBLaunchInfo, GetEnvironment); in GetEnvironment() 208 SBEnvironment(Environment(m_opaque_sp->GetEnvironment()))); in GetEnvironment() 467 LLDB_REGISTER_METHOD(lldb::SBEnvironment, SBLaunchInfo, GetEnvironment, ()); in RegisterMethods()
|
| H A D | SBPlatform.cpp | 693 SBEnvironment SBPlatform::GetEnvironment() { in GetEnvironment() function in SBPlatform 694 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBEnvironment, SBPlatform, GetEnvironment); in GetEnvironment() 698 return LLDB_RECORD_RESULT(SBEnvironment(platform_sp->GetEnvironment())); in GetEnvironment() 794 LLDB_REGISTER_METHOD(lldb::SBEnvironment, SBPlatform, GetEnvironment, ()); in RegisterMethods()
|
| H A D | SBTarget.cpp | 391 launch_info.GetEnvironment() = Environment(envp); in Launch() 394 launch_info.GetEnvironment() = default_launch_info.GetEnvironment(); in Launch() 2447 SBEnvironment SBTarget::GetEnvironment() { in GetEnvironment() function in SBTarget 2448 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBEnvironment, SBTarget, GetEnvironment); in GetEnvironment() 2452 return LLDB_RECORD_RESULT(SBEnvironment(target_sp->GetEnvironment())); in GetEnvironment() 2746 LLDB_REGISTER_METHOD(lldb::SBEnvironment, SBTarget, GetEnvironment, ()); in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | ProcessInfo.h | 87 Environment &GetEnvironment() { return m_environment; } in GetEnvironment() function 88 const Environment &GetEnvironment() const { return m_environment; } in GetEnvironment() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | RemoteAwarePlatform.cpp | 371 Environment RemoteAwarePlatform::GetEnvironment() { in GetEnvironment() function in RemoteAwarePlatform 374 return m_remote_platform_sp->GetEnvironment(); in GetEnvironment() 377 return Host::GetEnvironment(); in GetEnvironment()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBLaunchInfo.i | 74 GetEnvironment();
|
| H A D | SBPlatform.i | 211 GetEnvironment();
|
| H A D | SBTarget.i | 669 GetEnvironment();
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBLaunchInfo.h | 130 SBEnvironment GetEnvironment();
|
| H A D | SBPlatform.h | 168 SBEnvironment GetEnvironment();
|
| H A D | SBTarget.h | 104 SBEnvironment GetEnvironment();
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandOptionsProcessLaunch.cpp | 134 launch_info.GetEnvironment().insert(option_arg); in SetOptionValue()
|
| H A D | CommandObjectProcess.cpp | 215 Environment target_env = target->GetEnvironment(); in DoExecute() 216 m_options.launch_info.GetEnvironment().insert(target_env.begin(), in DoExecute()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | RemoteAwarePlatform.h | 83 lldb_private::Environment GetEnvironment() override;
|
| H A D | Platform.h | 577 virtual Environment GetEnvironment();
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 126 Environment env = info.GetEnvironment(); in ChildFunc()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Host.h | 262 static Environment GetEnvironment();
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 156 info.GetEnvironment() = Host::GetEnvironment(); in handle_launch()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/openbsd/ |
| H A D | Host.cpp | 44 Environment Host::GetEnvironment() { in GetEnvironment() function in Host
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Host.cpp | 525 launch_info.GetEnvironment() = Host::GetEnvironment(); in RunShellCommand()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/freebsd/ |
| H A D | Host.cpp | 244 Environment Host::GetEnvironment() { return Environment(environ); } in GetEnvironment() function in Host
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/netbsd/ |
| H A D | HostNetBSD.cpp | 48 Environment Host::GetEnvironment() { return Environment(environ); } in GetEnvironment() function in Host
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1460 launch_info.GetEnvironment().erase("OS_ACTIVITY_DT_MODE"); in FilterLaunchInfo() 1464 launch_info.GetEnvironment()["IDE_DISABLED_OS_ACTIVITY_DT_MODE"] = "1"; in FilterLaunchInfo() 1477 launch_info.GetEnvironment()["OS_ACTIVITY_MODE"] = env_var_value; in FilterLaunchInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunication.cpp | 918 Environment host_env = Host::GetEnvironment(); in StartDebugserverProcess() 1132 launch_info.GetEnvironment() = host_env; in StartDebugserverProcess()
|
| H A D | GDBRemoteCommunicationServerCommon.cpp | 919 m_process_launch_info.GetEnvironment().insert(packet.Peek()); in Handle_QEnvironment() 933 m_process_launch_info.GetEnvironment().insert(str); in Handle_QEnvironmentHexEncoded()
|