Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp31 ProcessLaunchInfo::ProcessLaunchInfo() in ProcessLaunchInfo() function in ProcessLaunchInfo
37 ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec &stdin_file_spec, in ProcessLaunchInfo() function in ProcessLaunchInfo
72 bool ProcessLaunchInfo::AppendCloseFileAction(int fd) { in AppendCloseFileAction()
132 const char *ProcessLaunchInfo::GetProcessPluginName() const { in GetProcessPluginName()
142 void ProcessLaunchInfo::SetShell(const FileSpec &shell) { in SetShell()
165 void ProcessLaunchInfo::Clear() { in Clear()
179 void ProcessLaunchInfo::SetMonitorProcessCallback( in SetMonitorProcessCallback()
192 bool ProcessLaunchInfo::MonitorProcess() const { in MonitorProcess()
206 void ProcessLaunchInfo::SetDetachOnError(bool enable) { in SetDetachOnError()
213 llvm::Error ProcessLaunchInfo::SetUpPtyRedirection() { in SetUpPtyRedirection()
[all …]
H A DMonitoringProcessLauncher.cpp25 MonitoringProcessLauncher::LaunchProcess(const ProcessLaunchInfo &launch_info, in LaunchProcess()
27 ProcessLaunchInfo resolved_info(launch_info); in LaunchProcess()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DProcessLauncher.h14 class ProcessLaunchInfo; variable
21 virtual HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
H A DProcessLaunchInfo.h31 class ProcessLaunchInfo : public ProcessInfo {
33 ProcessLaunchInfo();
35 ProcessLaunchInfo(const FileSpec &stdin_file_spec,
H A DHost.h28 class ProcessLaunchInfo; variable
189 static Status LaunchProcess(ProcessLaunchInfo &launch_info);
196 static Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
H A DMonitoringProcessLauncher.h25 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp58 static void DisableASLRIfRequested(int error_fd, const ProcessLaunchInfo &info) { in DisableASLRIfRequested()
92 const ProcessLaunchInfo &info) { in ChildFunc()
179 ProcessLauncherPosixFork::LaunchProcess(const ProcessLaunchInfo &launch_info, in LaunchProcess()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBLaunchInfo.cpp24 class lldb_private::SBLaunchInfoImpl : public ProcessLaunchInfo {
27 : ProcessLaunchInfo(), m_envp(GetEnvironment().getEnvp()) {} in SBLaunchInfoImpl()
32 SBLaunchInfoImpl &operator=(const ProcessLaunchInfo &rhs) { in operator =()
33 ProcessLaunchInfo::operator=(rhs); in operator =()
67 const lldb_private::ProcessLaunchInfo &SBLaunchInfo::ref() const { in ref()
71 void SBLaunchInfo::set_ref(const ProcessLaunchInfo &info) { in set_ref()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBLaunchInfo.h186 const lldb_private::ProcessLaunchInfo &ref() const;
187 void set_ref(const lldb_private::ProcessLaunchInfo &info);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h24 ScriptedProcessInfo(const ProcessLaunchInfo &launch_info) { in ScriptedProcessInfo()
72 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
H A DScriptedProcess.cpp153 ProcessLaunchInfo launch_info = GetTarget().GetProcessLaunchInfo(); in DoLoadCore()
159 ProcessLaunchInfo &launch_info) { in DoLaunch()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DProcessLauncherPosixFork.h18 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp41 class ProcessLaunchInfo;
217 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.h43 lldb_private::ProcessLaunchInfo launch_info;
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp41 class ProcessLaunchInfo;
246 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h62 Status LaunchProcess(ProcessLaunchInfo &launch_info) override;
66 lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h45 uint32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp45 class ProcessLaunchInfo;
269 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h212 const ProcessLaunchInfo &GetProcessLaunchInfo() const;
214 void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info);
248 ProcessLaunchInfo m_launch_info;
593 Status Launch(ProcessLaunchInfo &launch_info,
1095 Status Install(ProcessLaunchInfo *launch_info);
1486 void FinalizeFileActions(ProcessLaunchInfo &info);
H A DPlatform.h337 virtual Status LaunchProcess(ProcessLaunchInfo &launch_info);
344 virtual Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
367 DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger,
653 virtual uint32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) { in GetResumeCountForLaunchInfo()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dmodule.modulemap45 module ProcessLaunchInfo { header "Host/ProcessLaunchInfo.h" export * }
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h86 static Status FilterLaunchInfo(ProcessLaunchInfo &launch_info,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h48 lldb::ProcessSP DebugProcess(lldb_private::ProcessLaunchInfo &launch_info,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h35 ProcessLaunchInfo m_process_launch_info;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h33 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,

123