Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DIOObject.h29 using WaitableHandle = lldb::file_t; variable
31 static const WaitableHandle kInvalidHandleValue;
43 virtual WaitableHandle GetWaitableHandle() = 0;
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h54 void UnregisterReadObject(IOObject::WaitableHandle handle) override;
60 void ProcessReadObject(IOObject::WaitableHandle handle);
89 llvm::DenseMap<IOObject::WaitableHandle, Callback> m_read_fds;
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h86 virtual void UnregisterReadObject(IOObject::WaitableHandle handle) = 0;
108 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle()
112 IOObject::WaitableHandle m_handle;
H A DFile.h129 WaitableHandle GetWaitableHandle() override;
402 WaitableHandle GetWaitableHandle() override;
H A DSocket.h160 WaitableHandle GetWaitableHandle() override;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DIOObject.cpp18 const IOObject::WaitableHandle IOObject::kInvalidHandleValue =
21 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp201 IOObject::WaitableHandle handle = fd.fd; in ProcessReadEvents()
306 void MainLoopPosix::UnregisterReadObject(IOObject::WaitableHandle handle) { in UnregisterReadObject()
357 void MainLoopPosix::ProcessReadObject(IOObject::WaitableHandle handle) { in ProcessReadObject()
H A DConnectionFileDescriptorPosix.cpp442 const IOObject::WaitableHandle handle = m_io_sp->GetWaitableHandle(); in BytesAvailable()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp315 IOObject::WaitableHandle Socket::GetWaitableHandle() { in GetWaitableHandle()
316 return (IOObject::WaitableHandle)m_socket; in GetWaitableHandle()
H A DFile.cpp117 IOObject::WaitableHandle File::GetWaitableHandle() { in GetWaitableHandle()
276 IOObject::WaitableHandle NativeFile::GetWaitableHandle() { in GetWaitableHandle()