Home
last modified time | relevance | path

Searched refs:m_io_sp (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp67 m_io_sp = in ConnectionFileDescriptor()
121 return m_io_sp && m_io_sp->IsValid(); in IsConnected()
232 Status error = m_io_sp->Close(); in Disconnect()
278 error = m_io_sp->Read(dst, bytes_read); in Read()
285 static_cast<uint64_t>(m_io_sp->GetWaitableHandle()), in Read()
304 if (m_io_sp->GetFdType() == IOObject::eFDTypeSocket) in Read()
382 error = m_io_sp->Write(src, bytes_sent); in Write()
389 static_cast<uint64_t>(m_io_sp->GetWaitableHandle()), in Write()
452 const IOObject::WaitableHandle handle = m_io_sp in BytesAvailable()
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DConnectionFileDescriptorPosix.h66 lldb::IOObjectSP GetReadObject() override { return m_io_sp; } in GetReadObject()
131 lldb::IOObjectSP m_io_sp; variable