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

Overridden By

tools/lldb/source/Host/common/File.cpp
  251 int NativeFile::GetDescriptor() const {

Declarations

tools/lldb/include/lldb/Host/File.h
  146   virtual int GetDescriptor() const;

References

tools/lldb/source/Core/Debugger.cpp
  844   int fd = GetInputFile().GetDescriptor();
 1171         GetOutputFile().GetDescriptor(), !should_close, unbuffered);
tools/lldb/source/Core/IOHandler.cpp
  105   return (m_input_sp ? m_input_sp->GetDescriptor() : -1);
  109   return (m_output_sp ? m_output_sp->GetFile().GetDescriptor() : -1);
  113   return (m_error_sp ? m_error_sp->GetFile().GetDescriptor() : -1);
tools/lldb/source/Host/common/File.cpp
  155   const int fd = GetDescriptor();
  235   int fd = GetDescriptor();
tools/lldb/source/Host/common/FileCache.cpp
   38   lldb::user_id_t fd = file.get()->GetDescriptor();
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  526           descriptor = file.get()->GetDescriptor();
tools/lldb/source/Target/ModuleCache.cpp
  172   m_lock.reset(new lldb_private::LockFile(m_file_up->GetDescriptor()));