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

Overrides

tools/lldb/include/lldb/Host/PipeBase.h
   25   virtual Status CreateNew(bool child_process_inherit) = 0;

Declarations

tools/lldb/include/lldb/Host/posix/PipePosix.h
   35   Status CreateNew(bool child_process_inherit) override;

References

tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  121   Status result = m_pipe.CreateNew(m_child_processes_inherit);
tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
  187   error = pipe.CreateNew(child_processes_inherit);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
 1056         error = socket_pipe.CreateNew(true);
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  887         Status pipe_result = pipe.CreateNew(false);
tools/lldb/source/Target/Process.cpp
 4305     m_pipe.CreateNew(false);