/prebuilt/ndk/android-ndk-r7/platforms/android-9/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 **);
|
/prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/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 **);
|
/external/chromium/net/tools/flip_server/ |
create_listener.cc | 9 #include <netdb.h> // for getaddrinfo and getnameinfo 13 #include <sys/socket.h> // for getaddrinfo and getnameinfo 24 // alloc'd by getaddrinfo 132 if ((err=getaddrinfo(node, service, &hints, &results))) { 134 LOG(ERROR) << "getaddrinfo " << " for (" << host << ":" << port 255 if ((err=getaddrinfo(node, service, &hints, &results))) { 257 LOG(ERROR) << "getaddrinfo for (" << node << ":" << service << "): "
|
/external/dropbear/ |
fake-rfc2553.c | 150 getaddrinfo(const char *hostname, const char *servname, function
|
dbutil.c | 202 /* for calling getaddrinfo: 215 err = getaddrinfo(address, port, &hints, &res0); 320 err = getaddrinfo(remotehost, remoteport, &hints, &res0);
|
/external/ipsec-tools/src/racoon/ |
kmpstat.c | 226 error = getaddrinfo(name, port, &hint, &ai);
|
prsa_par.y | 253 err = getaddrinfo($1, NULL, &hints, &res); 255 prsaerror("getaddrinfo(%s): %s\n", $1, gai_strerror(err)); 282 err = getaddrinfo($1, NULL, &hints, &res); 284 prsaerror("getaddrinfo(%s): %s\n", $1, gai_strerror(err));
|
/external/opencv/otherlibs/highgui/ |
cvcap_socket.cpp | 130 int error = getaddrinfo(_address, _port, &hints, &pAddrInfo); 134 sprintf(buffer, "getaddrinfo error: %s", gai_strerror(error));
|
/external/qemu/ |
qemu-sockets.c | 119 fprintf(stderr,"%s: getaddrinfo: family %s, host %s, port %s\n", 162 rc = getaddrinfo(strlen(addr) ? addr : NULL, port, &ai, &res); 164 fprintf(stderr,"getaddrinfo(%s,%s): %s\n", addr, port, 266 if (0 != (rc = getaddrinfo(addr, port, &ai, &res))) { 267 fprintf(stderr,"getaddrinfo(%s,%s): %s\n", addr, port, 339 if (0 != (rc = getaddrinfo(addr, port, &ai, &peer))) { 340 fprintf(stderr,"getaddrinfo(%s,%s): %s\n", addr, port, 363 if (0 != (rc = getaddrinfo(addr, port, &ai, &local))) { 364 fprintf(stderr,"getaddrinfo(%s,%s): %s\n", addr, port,
|
/libcore/luni/src/main/java/java/net/ |
InetAddress.java | 262 // by getaddrinfo(3) are reinterpreted by inet_pton(3) as decimal. 275 addresses = Libcore.os.getaddrinfo(address, hints); 411 InetAddress[] addresses = Libcore.os.getaddrinfo(host, hints); 412 // TODO: should getaddrinfo set the hostname of the InetAddresses it returns? [all...] |
/external/libpcap/ |
nametoaddr.c | 135 error = getaddrinfo(name, NULL, &hints, &res);
|
scanner.l | 321 if (getaddrinfo(yytext, NULL, &hints, &res))
|
/system/netd/ |
DnsProxyListener.cpp | 75 int rv = getaddrinfo(mHost, mService, mHints, &result); 99 NetdCommand("getaddrinfo") { 110 LOGW("Invalid number of arguments to getaddrinfo: %i", argc);
|
/libcore/luni/src/main/java/libcore/io/ |
ForwardingOs.java | 55 public InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws GaiException { return os.getaddrinfo(node, hints); } method in class:ForwardingOs
|
Os.java | 46 public InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws GaiException; method in interface:Os
|
Posix.java | 49 public native InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws GaiException; method in class:Posix
|
/external/mtpd/ |
mtpd.c | 271 error = getaddrinfo(server, port, &hints, &records); 273 log_print(FATAL, "Getaddrinfo() %s", (error == EAI_SYSTEM) ?
|
/external/v8/src/ |
platform-posix.cc | 345 int status = getaddrinfo(host, port, &hints, &result);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
netdb.h | 82 /* Scope delimiter for getaddrinfo(), getnameinfo(). */ 588 /* Error values for `getaddrinfo' function. */ 631 extern int getaddrinfo (__const char *__restrict __name, 639 /* Convert error return from getaddrinfo() to a string. */
|
/system/core/libnetutils/ |
ifc_utils.c | 109 ret = getaddrinfo(string, NULL, &hints, &ai); 884 ret = getaddrinfo(dst, NULL, &hints, &addr_ai); 887 printerr("getaddrinfo failed: invalid address %s\n", dst); 906 ret = getaddrinfo(gw, NULL, &hints, &gw_ai); 908 printerr("getaddrinfo failed: invalid gateway %s\n", gw); 931 printerr("ifc_add_route: getaddrinfo returned un supported address family %d\n",
|
/external/netperf/ |
netserver.c | 469 error = getaddrinfo((char *)hostname, 476 fprintf(stderr,"Sleeping on getaddrinfo EAI_AGAIN\n");
|
/external/ping6/ |
ping6.c | 520 ret_ga = getaddrinfo(optarg, NULL, &hints, &res); 620 /* getaddrinfo */ 627 ret_ga = getaddrinfo(target, NULL, &hints, &res); 636 errx(1, "getaddrinfo failed"); 660 error = getaddrinfo(gateway, NULL, &hints, &gres); 662 errx(1, "getaddrinfo for the gateway %s: %s", 920 if ((error = getaddrinfo(argv[hops], NULL, &hints, [all...] |
/bionic/libc/netbsd/resolv/ |
res_init.c | 365 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 && 469 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
|
/external/ipsec-tools/src/libipsec/ |
policy_parse.y | 410 error = getaddrinfo(addr, serv, &hints, &res);
|
/external/ipsec-tools/ |
setup.c | 104 if (getaddrinfo(server, "500", &hints, &info) != 0) {
|