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

Declarations

tools/lldb/include/lldb/Host/ProcessLaunchInfo.h
   50   bool AppendSuppressFileAction(int fd, bool read, bool write);

References

tools/lldb/source/API/SBLaunchInfo.cpp
  290   return m_opaque_sp->AppendSuppressFileAction(fd, read, write);
tools/lldb/source/Host/common/Host.cpp
  513   launch_info.AppendSuppressFileAction(STDIN_FILENO, true, false);
  518     launch_info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
  523     launch_info.AppendSuppressFileAction(STDERR_FILENO, false, true);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
 1161     launch_info.AppendSuppressFileAction(STDIN_FILENO, true, false);
 1162     launch_info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
 1163     launch_info.AppendSuppressFileAction(STDERR_FILENO, false, true);
tools/lldb/source/Target/Target.cpp
 3106       info.AppendSuppressFileAction(STDIN_FILENO, true, false);
 3107       info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
 3108       info.AppendSuppressFileAction(STDERR_FILENO, false, true);