Searched refs:inet_pton_result (Results 1 - 2 of 2) sorted by relevance

/external/lldb/tools/debugserver/source/
H A DRNBSocket.cpp52 int inet_pton_result = ::inet_pton (AF_INET, hostname, &addr); local
54 if (inet_pton_result == 1)
61 inet_pton_result = ::inet_pton (AF_INET, ip_str.c_str(), &addr);
62 if (inet_pton_result == 1)
/external/lldb/source/Core/
H A DConnectionFileDescriptor.cpp1296 int inet_pton_result = ::inet_pton (AF_INET, host_str.c_str(), &sa.sin_addr);
1298 if (inet_pton_result <= 0)
1303 inet_pton_result = ::inet_pton (AF_INET, host_str.c_str(), &sa.sin_addr);
1304 if (inet_pton_result <= 0)
1309 if (inet_pton_result == -1)

Completed in 87 milliseconds