Searched refs:host_str (Results 1 – 2 of 2) sorted by relevance
| /NextBSD/contrib/llvm/tools/lldb/source/Host/common/ |
| HD | Socket.cpp | 128 std::string host_str; in TcpConnect() local 131 if (!DecodeHostAndPort (host_and_port, host_str, port_str, port, &error)) in TcpConnect() 154 int inet_pton_result = ::inet_pton (AF_INET, host_str.c_str(), &sa.sin_addr); in TcpConnect() 158 struct hostent *host_entry = gethostbyname (host_str.c_str()); in TcpConnect() 160 host_str = ::inet_ntoa (*(struct in_addr *)*host_entry->h_addr_list); in TcpConnect() 161 inet_pton_result = ::inet_pton (AF_INET, host_str.c_str(), &sa.sin_addr); in TcpConnect() 167 error.SetErrorStringWithFormat("invalid host string: '%s'", host_str.c_str()); in TcpConnect() 216 std::string host_str; in TcpListen() local 219 if (!DecodeHostAndPort (host_and_port, host_str, port_str, port, &error)) in TcpListen() 263 std::string host_str; in BlockingAccept() local [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/ |
| HD | Socket.h | 109 std::string &host_str,
|