Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcessLaunchInfo.cpp44 uint32_t launch_flags) in ProcessLaunchInfo() argument
45 : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(launch_flags), in ProcessLaunchInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcessLaunchInfo.h40 const FileSpec &working_dir, uint32_t launch_flags);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTarget.cpp251 uint32_t launch_flags = 0; in LaunchSimple() local
256 working_directory, launch_flags, stop_at_entry, error); in LaunchSimple()
273 uint32_t launch_flags, // See LaunchFlags in Launch() argument
289 working_directory ? working_directory : "NULL", launch_flags, in Launch()
296 launch_flags |= eLaunchFlagStopAtEntry; in Launch()
299 launch_flags |= eLaunchFlagDisableASLR; in Launch()
327 launch_flags |= eLaunchFlagDisableSTDIO; in Launch()
331 FileSpec(working_directory), launch_flags); in Launch()
H A DSBProcess.cpp109 uint32_t launch_flags, bool stop_at_entry, in RemoteLaunch() argument
121 working_directory ? working_directory : "NULL", launch_flags, in RemoteLaunch()
130 launch_flags |= eLaunchFlagStopAtEntry; in RemoteLaunch()
133 FileSpec(working_directory), launch_flags); in RemoteLaunch()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBProcess.h84 uint32_t launch_flags, bool stop_at_entry,
H A DSBTarget.h185 uint32_t launch_flags, // See LaunchFlags
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp812 uint32_t launch_flags = launch_info.GetFlags().Get(); in DoLaunch() local
848 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch()
868 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch()
926 m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR); in DoLaunch()
927 m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError); in DoLaunch()