Home
last modified time | relevance | path

Searched refs:launch_flags (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp41 uint32_t launch_flags) in ProcessLaunchInfo() argument
42 : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(launch_flags), in ProcessLaunchInfo()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h37 const FileSpec &working_dir, uint32_t launch_flags);
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp128 uint32_t launch_flags, bool stop_at_entry, in RemoteLaunch() argument
131 working_directory, launch_flags, stop_at_entry, error); in RemoteLaunch()
139 launch_flags |= eLaunchFlagStopAtEntry; in RemoteLaunch()
142 FileSpec(working_directory), launch_flags); in RemoteLaunch()
H A DSBTarget.cpp303 uint32_t launch_flags, // See LaunchFlags in Launch() argument
306 stderr_path, working_directory, launch_flags, in Launch()
317 launch_flags |= eLaunchFlagStopAtEntry; in Launch()
320 launch_flags |= eLaunchFlagDisableASLR; in Launch()
348 launch_flags |= eLaunchFlagDisableSTDIO; in Launch()
352 FileSpec(working_directory), launch_flags); in Launch()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBProcess.h91 uint32_t launch_flags, bool stop_at_entry,
H A DSBTarget.h182 uint32_t launch_flags, // See LaunchFlags
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp622 uint32_t launch_flags = launch_info.GetFlags().Get(); in DoLaunch() local
660 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch()
678 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch()
736 m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR); in DoLaunch()
737 m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError); in DoLaunch()