Home
last modified time | relevance | path

Searched refs:HostProcess (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHostProcess.cpp17 HostProcess::HostProcess() : m_native_process(new HostNativeProcess) {} in HostProcess() function in HostProcess
19 HostProcess::HostProcess(lldb::process_t process) in HostProcess() function in HostProcess
22 HostProcess::~HostProcess() {} in ~HostProcess()
24 Status HostProcess::Terminate() { return m_native_process->Terminate(); } in Terminate()
26 Status HostProcess::GetMainModule(FileSpec &file_spec) const { in GetMainModule()
30 lldb::pid_t HostProcess::GetProcessId() const { in GetProcessId()
34 bool HostProcess::IsRunning() const { return m_native_process->IsRunning(); } in IsRunning()
37 HostProcess::StartMonitoring(const Host::MonitorChildProcessCallback &callback, in StartMonitoring()
42 HostNativeProcessBase &HostProcess::GetNativeProcess() { in GetNativeProcess()
46 const HostNativeProcessBase &HostProcess::GetNativeProcess() const { in GetNativeProcess()
H A DMonitoringProcessLauncher.cpp25 HostProcess
44 return HostProcess(); in LaunchProcess()
50 HostProcess process = in LaunchProcess()
H A DHost.cpp594 HostProcess process = launcher.LaunchProcess(launch_info, error); in LaunchProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHostProcess.h37 class HostProcess {
39 HostProcess();
40 HostProcess(lldb::process_t process);
41 ~HostProcess();
H A DProcessLauncher.h17 class HostProcess; variable
22 virtual HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
H A DMonitoringProcessLauncher.h26 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp178 HostProcess
189 return HostProcess(); in LaunchProcess()
196 return HostProcess(LLDB_INVALID_PROCESS_ID); in LaunchProcess()
211 return HostProcess(pid); // No error. We're done. in LaunchProcess()
217 return HostProcess(); in LaunchProcess()
/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/include/lldb/
H A Dmodule.modulemap30 module HostProcess { header "Host/HostProcess.h" export * }
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile216 SRCS+= Host/common/HostProcess.cpp