Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DIOObject.h29 typedef int WaitableHandle; typedef
30 static const WaitableHandle kInvalidHandleValue;
42 virtual WaitableHandle GetWaitableHandle() = 0;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h61 virtual void UnregisterReadObject(IOObject::WaitableHandle handle) { in UnregisterReadObject()
71 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle()
75 IOObject::WaitableHandle m_handle;
H A DMainLoop.h70 void UnregisterReadObject(IOObject::WaitableHandle handle) override;
75 void ProcessReadObject(IOObject::WaitableHandle handle);
105 llvm::DenseMap<IOObject::WaitableHandle, Callback> m_read_fds;
H A DFile.h122 WaitableHandle GetWaitableHandle() override;
392 WaitableHandle GetWaitableHandle() override;
H A DSocket.h104 WaitableHandle GetWaitableHandle() override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoop.cpp226 std::vector<IOObject::WaitableHandle> fds;
236 IOObject::WaitableHandle handle = fd.fd;
350 void MainLoop::UnregisterReadObject(IOObject::WaitableHandle handle) {
420 void MainLoop::ProcessReadObject(IOObject::WaitableHandle handle) {
H A DFile.cpp111 IOObject::WaitableHandle File::GetWaitableHandle() { in GetWaitableHandle()
269 IOObject::WaitableHandle NativeFile::GetWaitableHandle() { in GetWaitableHandle()
H A DSocket.cpp318 IOObject::WaitableHandle Socket::GetWaitableHandle() { in GetWaitableHandle()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DIOObject.cpp13 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp561 const IOObject::WaitableHandle handle = m_read_sp->GetWaitableHandle(); in BytesAvailable()