reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86165   SWIG_Python_SetConstant(d, "eLaunchFlagDetachOnError",SWIG_From_int(static_cast< int >(lldb::eLaunchFlagDetachOnError)));
tools/lldb/include/lldb/Host/ProcessLaunchInfo.h
  147     return m_flags.Test(lldb::eLaunchFlagDetachOnError);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  190       m_options.launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  205     m_flags.Set(lldb::eLaunchFlagDetachOnError);
  207     m_flags.Clear(lldb::eLaunchFlagDetachOnError);
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  395       launch_info.GetFlags().Test(eLaunchFlagDetachOnError));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  874     m_process_launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
  876     m_process_launch_info.GetFlags().Clear(eLaunchFlagDetachOnError);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  890       m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError);
tools/lldb/source/Target/Target.cpp
 3983   SetDetachOnError(launch_info.GetFlags().Test(lldb::eLaunchFlagDetachOnError));
 4051     this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDetachOnError);
 4053     this_->m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDetachOnError);