Home
last modified time | relevance | path

Searched refs:WaitableHandle (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DIOObject.h30 typedef int WaitableHandle; typedef
31 static const WaitableHandle kInvalidHandleValue;
44 virtual WaitableHandle GetWaitableHandle() = 0;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DMainLoopBase.h62 virtual void UnregisterReadObject(IOObject::WaitableHandle handle) { in UnregisterReadObject()
72 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle()
76 IOObject::WaitableHandle m_handle;
H A DMainLoop.h70 void UnregisterReadObject(IOObject::WaitableHandle handle) override;
75 void ProcessReadObject(IOObject::WaitableHandle handle);
102 llvm::DenseMap<IOObject::WaitableHandle, Callback> m_read_fds;
H A DSocket.h97 WaitableHandle GetWaitableHandle() override;
H A DFile.h136 WaitableHandle GetWaitableHandle() override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DMainLoop.cpp222 std::vector<IOObject::WaitableHandle> fds;
232 IOObject::WaitableHandle handle = fd.fd;
342 void MainLoop::UnregisterReadObject(IOObject::WaitableHandle handle) {
403 void MainLoop::ProcessReadObject(IOObject::WaitableHandle handle) {
H A DSocket.cpp302 IOObject::WaitableHandle Socket::GetWaitableHandle() { in GetWaitableHandle()
H A DFile.cpp95 IOObject::WaitableHandle File::GetWaitableHandle() { return m_descriptor; } in GetWaitableHandle()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DIOObject.cpp14 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp553 const IOObject::WaitableHandle handle = m_read_sp->GetWaitableHandle(); in BytesAvailable()