Searched refs:m_socket (Results 1 – 2 of 2) sorted by relevance
| /NextBSD/contrib/llvm/tools/lldb/source/Host/common/ |
| HD | Socket.cpp | 107 , m_socket(socket) in Socket() 588 return m_socket; in GetWaitableHandle() 597 bytes_received = ::recv (m_socket, static_cast<char *>(buf), num_bytes, 0); in Read() 613 static_cast<uint64_t>(m_socket), in Read() 631 bytes_sent = ::sendto (m_socket, in Write() 639 bytes_sent = ::send (m_socket, static_cast<const char *>(buf), num_bytes, 0); in Write() 655 static_cast<uint64_t>(m_socket), in Write() 679 log->Printf ("%p Socket::Close (fd = %i)", static_cast<void*>(this), m_socket); in Close() 682 bool success = !!closesocket(m_socket); in Close() 684 bool success = !!::close (m_socket); in Close() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/ |
| HD | Socket.h | 95 NativeSocket GetNativeSocket () const { return m_socket; } in GetNativeSocket() 104 virtual bool IsValid () const { return m_socket != kInvalidSocketValue; } in IsValid() 116 NativeSocket m_socket; variable
|