Home
last modified time | relevance | path

Searched refs:IOObject (Results 1 – 15 of 15) sorted by relevance

/llvm-project/lldb/include/lldb/Utility/
H A DIOObject.h20 class IOObject {
32 IOObject(FDType type) : m_fd_type(type) {} in IOObject() function
33 virtual ~IOObject();
48 IOObject(const IOObject &) = delete;
49 const IOObject &operator=(const IOObject &) = delete;
/llvm-project/lldb/source/Utility/
H A DIOObject.cpp13 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
14 IOObject::~IOObject() = default;
H A DCMakeLists.txt48 IOObject.cpp
/llvm-project/lldb/include/lldb/Host/windows/
H A DMainLoopWindows.h35 void UnregisterReadObject(IOObject::WaitableHandle handle) override;
40 void ProcessReadObject(IOObject::WaitableHandle handle);
47 llvm::DenseMap<IOObject::WaitableHandle, FdInfo> m_read_fds;
/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h12 #include "lldb/Utility/IOObject.h"
86 virtual void UnregisterReadObject(IOObject::WaitableHandle handle) = 0;
108 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle)
112 IOObject::WaitableHandle m_handle;
H A DFile.h36 class File : public IOObject {
75 File() : IOObject(eFDTypeFile){}; in File()
H A DSocket.h21 #include "lldb/Utility/IOObject.h"
68 class Socket : public IOObject {
/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;
/llvm-project/lldb/source/Host/windows/
H A DMainLoopWindows.cpp86 if (object_sp->GetFdType() != IOObject::eFDTypeSocket) { in RegisterReadObject()
114 void MainLoopWindows::UnregisterReadObject(IOObject::WaitableHandle handle) { in Run()
123 void MainLoopWindows::ProcessReadObject(IOObject::WaitableHandle handle) { in Run()
/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp201 IOObject::WaitableHandle handle = fd.fd;
306 void MainLoopPosix::UnregisterReadObject(IOObject::WaitableHandle handle) {
357 void MainLoopPosix::ProcessReadObject(IOObject::WaitableHandle handle) {
H A DConnectionFileDescriptorPosix.cpp300 if (m_io_sp->GetFdType() == IOObject::eFDTypeSocket) in Read()
448 const IOObject::WaitableHandle handle = m_io_sp->GetWaitableHandle(); in BytesAvailable()
451 if (handle != IOObject::kInvalidHandleValue) { in BytesAvailable()
/llvm-project/lldb/source/Host/common/
H A DSocket.cpp174 : IOObject(eFDTypeSocket), m_protocol(protocol), in TcpListen()
300 IOObject::WaitableHandle Socket::GetWaitableHandle() { in GetOption()
H A DFile.cpp117 IOObject::WaitableHandle File::GetWaitableHandle() { in GetWaitableHandle()
118 return IOObject::kInvalidHandleValue; in GetWaitableHandle()
276 IOObject::WaitableHandle NativeFile::GetWaitableHandle() { in GetWaitableHandle()
/llvm-project/llvm/utils/gn/secondary/lldb/source/Utility/
H A DBUILD.gn31 "IOObject.cpp",
/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h110 class IOObject; variable
363 typedef std::shared_ptr<lldb_private::IOObject> IOObjectSP;