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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86160   SWIG_Python_SetConstant(d, "eLaunchFlagDisableSTDIO",SWIG_From_int(static_cast< int >(lldb::eLaunchFlagDisableSTDIO)));
tools/lldb/source/API/SBTarget.cpp
  366       launch_flags |= eLaunchFlagDisableSTDIO;
tools/lldb/source/Commands/CommandObjectProcess.cpp
  193       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  812   const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
  832       const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
tools/lldb/source/Target/Target.cpp
 3103     if (info.GetFlags().Test(eLaunchFlagDisableSTDIO)) {
 3985   SetDisableSTDIO(launch_info.GetFlags().Test(lldb::eLaunchFlagDisableSTDIO));
 4071     this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableSTDIO);
 4073     this_->m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDisableSTDIO);
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
 1249     flags |= lldb::eLaunchFlagDisableSTDIO;