HomeSort by relevance Sort by last modified time
    Searched refs:getaddrinfo (Results 1 - 25 of 201) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/test/brokensocket/
socket.py 1 from realsocket import gaierror, error, getaddrinfo, SOCK_STREAM
  /external/compiler-rt/test/msan/
getaddrinfo-positive.cc 16 int res = getaddrinfo("localhost", NULL, NULL, &ai);
18 res = getaddrinfo("localhost", NULL, &hint, &ai);
21 // CHECK: #0 {{.*}} in main {{.*}}getaddrinfo-positive.cc:[[@LINE-3]]
getaddrinfo.cc 22 int res = getaddrinfo("not-in-etc-hosts", NULL, NULL, &ai);
  /libcore/luni/src/main/native/
Portability.h 30 return getaddrinfo(hostname, servname, hints, res);
  /external/netperf/src/missing/
getaddrinfo.h 149 #define getaddrinfo my_getaddrinfo macro
170 * Flags for getaddrinfo().
227 int getaddrinfo(const char *, const char *, const struct addrinfo *,
234 int getaddrinfo();
  /external/libxml2/os400/
wrappers.h 60 #define getaddrinfo _lx_getaddrinfo macro
  /system/core/libcutils/
socket_network_client_windows.c 46 if (getaddrinfo(host, port_str, &hints, &address) != 0 || address == NULL) {
  /prebuilts/go/darwin-x86/src/net/
cgo_linux.go 18 // getaddrinfo to return the wrong canonical name on Linux.
  /prebuilts/go/linux-x86/src/net/
cgo_linux.go 18 // getaddrinfo to return the wrong canonical name on Linux.
  /external/curl/tests/server/
resolve.c 130 /* getaddrinfo() resolve */
140 rc = (getaddrinfo)(host, "80", &hints, &ai);
  /external/libpcap/Win32/Include/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 * Flag values for getaddrinfo()
83 extern int getaddrinfo (const char *, const char *,
  /external/toybox/lib/
net.c 28 fd = getaddrinfo(host, port, &info, &ai);
  /system/extras/multinetwork/
dnschk.cpp 62 rval = getaddrinfo(args.arg1, nullptr, &hints, &result);
  /bionic/tests/
netdb_test.cpp 35 ASSERT_EQ(0, getaddrinfo(NULL, "smtp", NULL, &ai));
44 ASSERT_EQ(0, getaddrinfo("localhost", NULL, NULL, &ai));
51 ASSERT_EQ(0, getaddrinfo("localhost", "9999", NULL, &ai));
73 ASSERT_EQ(0, getaddrinfo("localhost", "smtp", NULL, &ai));
88 ASSERT_EQ(0, getaddrinfo( "localhost", "9999", &hints, &ai));
90 // In glibc, getaddrinfo() converts ::1 to 127.0.0.1 for localhost,
104 ASSERT_EQ(0, getaddrinfo("ip6-localhost", NULL, NULL, &ai));
  /cts/tests/tests/net/jni/
NativeDnsJni.c 35 int res = getaddrinfo(node, service, NULL, &answer);
36 ALOGD("getaddrinfo(www.google.com) gave res=%d (%s)", res, gai_strerror(res));
63 ALOGD("getaddrinfo(www.google.com) didn't find either v4 or v6 address");
69 res = getaddrinfo(node, service, NULL, &answer);
70 ALOGD("getaddrinfo(ipv6.google.com) gave res=%d", res);
96 ALOGD("getaddrinfo(ipv6.google.com) didn't find only v6");
  /external/boringssl/src/crypto/bio/
socket_helper.c 52 ret = getaddrinfo(hostname, port_str, &hint, &result);
  /external/curl/CMake/
CurlTests.c 274 #ifndef getaddrinfo
275 (void)getaddrinfo;
277 error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
  /external/curl/lib/
memdebug.h 117 #if defined(getaddrinfo) && defined(__osf__)
118 /* OSF/1 and Tru64 have getaddrinfo as a define already, so we cannot define
120 define getaddrinfo to become! */
124 #undef getaddrinfo macro
125 #define getaddrinfo(host,serv,hint,res) \ macro
  /system/netd/tests/
netd_test.cpp 143 error_ = getaddrinfo(node, service, &hints, &ai_);
149 error_ = getaddrinfo(node, service, nullptr, &ai_);
386 int rv = getaddrinfo(mapping.host.c_str(), nullptr, nullptr, &result);
507 TEST_F(ResolverTest, GetAddrInfo) {
532 EXPECT_EQ(0, getaddrinfo("howdy", nullptr, nullptr, &result));
547 EXPECT_EQ(0, getaddrinfo("howdy", nullptr, nullptr, &result));
565 EXPECT_EQ(0, getaddrinfo("howdy", nullptr, nullptr, &result));
600 EXPECT_EQ(0, getaddrinfo("hola", nullptr, &hints, &result));
665 getaddrinfo(domain.c_str(), nullptr, &hints, &result);
675 EXPECT_EQ(0, getaddrinfo("ohayou", nullptr, &hints, &result))
    [all...]
  /development/ndk/platforms/android-3/include/
netdb.h 138 * Error return codes from getaddrinfo()
157 * Flag values for getaddrinfo()
218 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
  /external/ipsec-tools/src/racoon/
kmpstat.c 220 error = getaddrinfo(name, port, &hint, &ai);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service.hpp 59 socket_ops::getaddrinfo(query.host_name().c_str(),
  /external/webrtc/webrtc/base/
nethelpers.cc 41 int ret = getaddrinfo(hostname.c_str(), NULL, &hints, &result);
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
netdb.h 138 * Error return codes from getaddrinfo()
157 * Flag values for getaddrinfo()
218 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/
netdb.h 138 * Error return codes from getaddrinfo()
157 * Flag values for getaddrinfo()
218 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 9