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

References

tools/lldb/include/lldb/Host/File.h
  129   WaitableHandle GetWaitableHandle() override;
  400   WaitableHandle GetWaitableHandle() override;
tools/lldb/include/lldb/Host/MainLoop.h
   69   void UnregisterReadObject(IOObject::WaitableHandle handle) override;
   74   void ProcessReadObject(IOObject::WaitableHandle handle);
  101   llvm::DenseMap<IOObject::WaitableHandle, Callback> m_read_fds;
tools/lldb/include/lldb/Host/MainLoopBase.h
   61   virtual void UnregisterReadObject(IOObject::WaitableHandle handle) {
   71     ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle)
   75     IOObject::WaitableHandle m_handle;
tools/lldb/include/lldb/Host/Socket.h
   99   WaitableHandle GetWaitableHandle() override;
tools/lldb/include/lldb/Utility/IOObject.h
   30   static const WaitableHandle kInvalidHandleValue;
   42   virtual WaitableHandle GetWaitableHandle() = 0;
tools/lldb/source/Host/common/File.cpp
  111 IOObject::WaitableHandle File::GetWaitableHandle() {
  269 IOObject::WaitableHandle NativeFile::GetWaitableHandle() {
tools/lldb/source/Host/common/MainLoop.cpp
  235     IOObject::WaitableHandle handle = fd.fd;
  346 void MainLoop::UnregisterReadObject(IOObject::WaitableHandle handle) {
  404 void MainLoop::ProcessReadObject(IOObject::WaitableHandle handle) {
tools/lldb/source/Host/common/Socket.cpp
  324 IOObject::WaitableHandle Socket::GetWaitableHandle() {
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  560   const IOObject::WaitableHandle handle = m_read_sp->GetWaitableHandle();
tools/lldb/source/Utility/IOObject.cpp
   13 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;