Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DTCPSocket.cpp67 return m_socket != kInvalidSocketValue || m_listen_sockets.size() != 0; in IsValid()
72 if (m_socket != kInvalidSocketValue) { in GetLocalPortNumber()
90 if (m_socket != kInvalidSocketValue) { in GetLocalIPAddress()
100 if (m_socket != kInvalidSocketValue) { in GetRemotePortNumber()
112 if (m_socket != kInvalidSocketValue) { in GetRemoteIPAddress()
H A DSocket.cpp55 const NativeSocket Socket::kInvalidSocketValue = INVALID_SOCKET; member in Socket
59 const NativeSocket Socket::kInvalidSocketValue = -1; member in Socket
76 m_socket(kInvalidSocketValue), in Socket()
380 m_socket = kInvalidSocketValue; in Close()
425 if (sock == kInvalidSocketValue) in CreateSocket()
460 if (fd == kInvalidSocketValue) in AcceptSocket()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSocket.h50 static const NativeSocket kInvalidSocketValue; variable
96 bool IsValid() const override { return m_socket != kInvalidSocketValue; } in IsValid()