Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp32 ProcessLaunchInfo::ProcessLaunchInfo() in ProcessLaunchInfo() function in ProcessLaunchInfo
37 ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec &stdin_file_spec, in ProcessLaunchInfo() function in ProcessLaunchInfo
69 bool ProcessLaunchInfo::AppendCloseFileAction(int fd) { in AppendCloseFileAction()
78 bool ProcessLaunchInfo::AppendDuplicateFileAction(int fd, int dup_fd) { in AppendDuplicateFileAction()
87 bool ProcessLaunchInfo::AppendOpenFileAction(int fd, const FileSpec &file_spec, in AppendOpenFileAction()
97 bool ProcessLaunchInfo::AppendSuppressFileAction(int fd, bool read, in AppendSuppressFileAction()
107 const FileAction *ProcessLaunchInfo::GetFileActionAtIndex(size_t idx) const { in GetFileActionAtIndex()
113 const FileAction *ProcessLaunchInfo::GetFileActionForFD(int fd) const { in GetFileActionForFD()
121 const FileSpec &ProcessLaunchInfo::GetWorkingDirectory() const { in GetWorkingDirectory()
125 void ProcessLaunchInfo::SetWorkingDirectory(const FileSpec &working_dir) { in SetWorkingDirectory()
[all …]
H A DMonitoringProcessLauncher.cpp26 MonitoringProcessLauncher::LaunchProcess(const ProcessLaunchInfo &launch_info, in LaunchProcess()
28 ProcessLaunchInfo resolved_info(launch_info); in LaunchProcess()
/freebsd/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.h30 class ProcessLaunchInfo : public ProcessInfo {
32 ProcessLaunchInfo();
34 ProcessLaunchInfo(const FileSpec &stdin_file_spec,
H A DHost.h29 class ProcessLaunchInfo; variable
169 static Status LaunchProcess(ProcessLaunchInfo &launch_info);
176 static Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
H A DMonitoringProcessLauncher.h25 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBLaunchInfo.cpp26 class lldb_private::SBLaunchInfoImpl : public ProcessLaunchInfo {
33 SBLaunchInfoImpl &operator=(const ProcessLaunchInfo &rhs) { in operator =()
34 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/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp99 ForkLaunchInfo(const ProcessLaunchInfo &info);
230 MakeForkActions(const ProcessLaunchInfo &info) { in MakeForkActions()
247 ForkLaunchInfo::ForkLaunchInfo(const ProcessLaunchInfo &info) in ForkLaunchInfo()
258 ProcessLauncherPosixFork::LaunchProcess(const ProcessLaunchInfo &launch_info, in LaunchProcess()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBLaunchInfo.h215 const lldb_private::ProcessLaunchInfo &ref() const;
216 void set_ref(const lldb_private::ProcessLaunchInfo &info);
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DProcessLauncherPosixFork.h18 HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp41 class ProcessLaunchInfo;
217 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.h43 lldb_private::ProcessLaunchInfo launch_info;
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp41 class ProcessLaunchInfo;
246 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h56 Status LaunchProcess(ProcessLaunchInfo &launch_info) override;
60 lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.cpp13 #include "lldb/Host/ProcessLaunchInfo.h"
160 lldb::ProcessSP PlatformQemuUser::DebugProcess(ProcessLaunchInfo &launch_info, in DebugProcess()
212 launch_info.SetMonitorProcessCallback(ProcessLaunchInfo::NoOpMonitorCallback); in DebugProcess()
H A DPlatformQemuUser.h38 lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp46 class ProcessLaunchInfo;
271 Status Host::ShellExpandArguments(ProcessLaunchInfo &launch_info) { in ShellExpandArguments()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp92 return std::make_shared<ProcessLaunchInfo>( in GetOpaqueTypeFromSBLaunchInfo()
93 *reinterpret_cast<ProcessLaunchInfo *>(launch_info.m_opaque_sp.get())); in GetOpaqueTypeFromSBLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h49 uint32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) override;
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h241 const ProcessLaunchInfo &GetProcessLaunchInfo() const;
243 void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info);
282 ProcessLaunchInfo m_launch_info;
650 Status Launch(ProcessLaunchInfo &launch_info,
1200 Status Install(ProcessLaunchInfo *launch_info);
1639 void FinalizeFileActions(ProcessLaunchInfo &info);
H A DPlatform.h335 virtual Status LaunchProcess(ProcessLaunchInfo &launch_info);
342 virtual Status ShellExpandArguments(ProcessLaunchInfo &launch_info);
365 virtual lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info,
640 virtual uint32_t GetResumeCountForLaunchInfo(ProcessLaunchInfo &launch_info) { in GetResumeCountForLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h84 static Status FilterLaunchInfo(ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap45 module ProcessLaunchInfo { header "lldb/Host/ProcessLaunchInfo.h" export * }
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h48 lldb::ProcessSP DebugProcess(lldb_private::ProcessLaunchInfo &launch_info,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h49 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;

123