Searched refs:launch_flags (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/lldb/test/API/python_api/process/ |
| H A D | TestProcessAPI.py | 334 launch_flags = launch_info.GetLaunchFlags() 335 launch_flags |= lldb.eLaunchFlagStopAtEntry 336 launch_info.SetLaunchFlags(launch_flags)
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 42 uint32_t launch_flags) in ProcessLaunchInfo() argument 43 : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(launch_flags), in ProcessLaunchInfo()
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | ProcessLaunchInfo.h | 38 const FileSpec &working_dir, uint32_t launch_flags);
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBProcess.cpp | 127 uint32_t launch_flags, bool stop_at_entry, in RemoteLaunch() argument 130 working_directory, launch_flags, stop_at_entry, error); in RemoteLaunch() 138 launch_flags |= eLaunchFlagStopAtEntry; in RemoteLaunch() 141 FileSpec(working_directory), launch_flags); in RemoteLaunch()
|
| H A D | SBTarget.cpp | 302 uint32_t launch_flags, // See LaunchFlags in Launch() argument 305 stderr_path, working_directory, launch_flags, in Launch() 316 launch_flags |= eLaunchFlagStopAtEntry; in Launch() 319 launch_flags |= eLaunchFlagDisableASLR; in Launch() 347 launch_flags |= eLaunchFlagDisableSTDIO; in Launch() 351 FileSpec(working_directory), launch_flags); in Launch()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 85 uint32_t launch_flags, bool stop_at_entry,
|
| H A D | SBTarget.h | 177 uint32_t launch_flags, // See LaunchFlags
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBProcess.i | 124 uint32_t launch_flags,
|
| H A D | SBTarget.i | 204 uint32_t launch_flags, // See LaunchFlags
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 719 uint32_t launch_flags = launch_info.GetFlags().Get(); in DoLaunch() local 757 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch() 775 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0; in DoLaunch() 833 m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR); in DoLaunch() 834 m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError); in DoLaunch()
|