Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDSocket.cpp44 const NativeSocket Socket::kInvalidSocketValue = INVALID_SOCKET; member in Socket
48 const NativeSocket Socket::kInvalidSocketValue = -1; member in Socket
121 NativeSocket sock = kInvalidSocketValue; in TcpConnect()
136 if (sock == kInvalidSocketValue) in TcpConnect()
194 NativeSocket listen_sock = kInvalidSocketValue; in TcpListen()
201 if (listen_sock == kInvalidSocketValue) in TcpListen()
304 if (sock == kInvalidSocketValue) in BlockingAccept()
350 NativeSocket final_send_fd = kInvalidSocketValue; in UdpConnect()
351 NativeSocket final_recv_fd = kInvalidSocketValue; in UdpConnect()
367 if (final_recv_fd == kInvalidSocketValue) in UdpConnect()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/
HDSocket.h51 static const NativeSocket kInvalidSocketValue; variable
104 virtual bool IsValid () const { return m_socket != kInvalidSocketValue; } in IsValid()