Home
last modified time | relevance | path

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

123

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcessLaunchInfo.cpp34 ProcessLaunchInfo::ProcessLaunchInfo() in ProcessLaunchInfo() function in ProcessLaunchInfo
40 ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec &stdin_file_spec, in ProcessLaunchInfo() function in ProcessLaunchInfo
74 bool ProcessLaunchInfo::AppendCloseFileAction(int fd) { in AppendCloseFileAction()
134 const char *ProcessLaunchInfo::GetProcessPluginName() const { in GetProcessPluginName()
144 void ProcessLaunchInfo::SetShell(const FileSpec &shell) { in SetShell()
167 void ProcessLaunchInfo::Clear() { in Clear()
179 void ProcessLaunchInfo::SetMonitorProcessCallback( in SetMonitorProcessCallback()
192 bool ProcessLaunchInfo::MonitorProcess() const { in MonitorProcess()
201 void ProcessLaunchInfo::SetDetachOnError(bool enable) { in SetDetachOnError()
208 llvm::Error ProcessLaunchInfo::SetUpPtyRedirection() { in SetUpPtyRedirection()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBLaunchInfo.cpp19 class lldb_private::SBLaunchInfoImpl : public ProcessLaunchInfo {
22 : ProcessLaunchInfo(), m_envp(GetEnvironment().getEnvp()) {} in SBLaunchInfoImpl()
27 SBLaunchInfoImpl &operator=(const ProcessLaunchInfo &rhs) { in operator =()
28 ProcessLaunchInfo::operator=(rhs); in operator =()
46 const lldb_private::ProcessLaunchInfo &SBLaunchInfo::ref() const { in ref()
50 void SBLaunchInfo::set_ref(const ProcessLaunchInfo &info) { in set_ref()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DProcessLauncher.h15 class ProcessLaunchInfo; variable
22 virtual HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
H A DHost.h29 class ProcessLaunchInfo; variable
205 static Status LaunchProcess(ProcessLaunchInfo &launch_info);
214 static Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
H A DMonitoringProcessLauncher.h26 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcessLaunchInfo.h33 class ProcessLaunchInfo : public ProcessInfo {
35 ProcessLaunchInfo();
37 ProcessLaunchInfo(const FileSpec &stdin_file_spec,
H A DTarget.h195 const ProcessLaunchInfo &GetProcessLaunchInfo();
197 void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info);
237 ProcessLaunchInfo m_launch_info;
548 Status Launch(ProcessLaunchInfo &launch_info,
1080 Status Install(ProcessLaunchInfo *launch_info);
1357 void FinalizeFileActions(ProcessLaunchInfo &info);
H A DPlatform.h363 virtual Status LaunchProcess(ProcessLaunchInfo &launch_info);
372 virtual Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
403 DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger,
687 virtual int32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) { in GetResumeCountForLaunchInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp59 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-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp26 MonitoringProcessLauncher::LaunchProcess(const ProcessLaunchInfo &launch_info, in LaunchProcess()
28 ProcessLaunchInfo resolved_info(launch_info); in LaunchProcess()
H A DHost.cpp480 ProcessLaunchInfo launch_info; in RunShellCommand()
584 Status Host::LaunchProcess(ProcessLaunchInfo &launch_info) { in LaunchProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h52 int32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) override;
56 lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
H A DPlatformNetBSD.cpp193 PlatformNetBSD::GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) { in GetResumeCountForLaunchInfo()
240 PlatformNetBSD::DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger, in DebugProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBLaunchInfo.h148 const lldb_private::ProcessLaunchInfo &ref() const;
149 void set_ref(const lldb_private::ProcessLaunchInfo &info);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DDarwinProcessLauncher.h43 LaunchInferior(ProcessLaunchInfo &launch_info, int *pty_master_fd,
H A DDarwinProcessLauncher.cpp274 ProcessLaunchInfo &launch_info, in PosixSpawnChildForPTraceDebugging()
435 Status LaunchInferior(ProcessLaunchInfo &launch_info, int *pty_master_fd, in LaunchInferior()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DProcessLauncherPosixFork.h19 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h66 Status LaunchProcess(ProcessLaunchInfo &launch_info) override;
70 lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h130 LaunchProcess(lldb_private::ProcessLaunchInfo &launch_info) override;
142 lldb::ProcessSP DebugProcess(lldb_private::ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h57 Status LaunchProcess(ProcessLaunchInfo &launch_info) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h99 static Status FilterLaunchInfo(ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp69 Launch(ProcessLaunchInfo &launch_info,
178 ProcessLaunchInfo info; in handle_launch()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h34 Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h36 ProcessLaunchInfo m_process_launch_info;
H A DGDBRemoteCommunication.h135 ProcessLaunchInfo &launch_info, uint16_t *port, const Args *inferior_args,

123