Home
last modified time | relevance | path

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

/freebsd/contrib/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;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DIOObject.cpp13 const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
14 IOObject::~IOObject() = default;
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h70 virtual void UnregisterReadObject(IOObject::WaitableHandle handle) = 0;
88 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle()
92 IOObject::WaitableHandle m_handle;
H A DFile.h14 #include "lldb/Utility/IOObject.h"
36 class File : public IOObject {
75 File() : IOObject(eFDTypeFile){}; in File()
122 /// IOObject::kInvalidHandleValue if none is available. This will
128 /// a valid handle or IOObject::kInvalidHandleValue
H A DSocket.h18 #include "lldb/Utility/IOObject.h"
41 class Socket : public IOObject {
/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);
88 llvm::DenseMap<IOObject::WaitableHandle, Callback> m_read_fds;
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp196 std::vector<IOObject::WaitableHandle> fds;
206 IOObject::WaitableHandle handle = fd.fd;
325 void MainLoopPosix::UnregisterReadObject(IOObject::WaitableHandle handle) {
383 void MainLoopPosix::ProcessReadObject(IOObject::WaitableHandle handle) {
H A DConnectionFileDescriptorPosix.cpp304 if (m_io_sp->GetFdType() == IOObject::eFDTypeSocket) in Read()
452 const IOObject::WaitableHandle handle = m_io_sp->GetWaitableHandle(); in BytesAvailable()
455 if (handle != IOObject::kInvalidHandleValue) { in BytesAvailable()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp75 : IOObject(eFDTypeSocket), m_protocol(protocol), in Socket()
211 IOObject::WaitableHandle Socket::GetWaitableHandle() { in GetWaitableHandle()
H A DFile.cpp117 IOObject::WaitableHandle File::GetWaitableHandle() { in GetWaitableHandle()
118 return IOObject::kInvalidHandleValue; in GetWaitableHandle()
276 IOObject::WaitableHandle NativeFile::GetWaitableHandle() { in GetStream()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h110 class IOObject; variable
359 typedef std::shared_ptr<lldb_private::IOObject> IOObjectSP;
/freebsd/lib/clang/liblldb/
H A DMakefile713 SRCS+= Utility/IOObject.cpp