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

1 2 3 4 5 6 7 8 91011

  /system/extras/tests/bionic/libc/common/
test_getaddrinfo.c 1 /* this program is used to test that getaddrinfo() works correctly
23 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, NULL, &res);
25 printf("first getaddrinfo returned error: %s\n", gai_strerror(ret));
37 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, &hints, &res );
39 printf("second getaddrinfo returned error: %s\n", gai_strerror(ret));
  /external/chromium/net/base/
sys_addrinfo.h 10 // getaddrinfo()
address_family.h 20 // determine the value of addrinfo.ai_flags and work around getaddrinfo
host_resolver_proc.cc 130 // The result of |getaddrinfo| for empty hosts is inconsistent across systems.
164 // Flags used in "hints" argument to getaddrinfo()
174 // computer is not connected to a network, AI_ADDRCONFIG causes getaddrinfo
176 // following note on AI_ADDRCONFIG in the MSDN getaddrinfo page:
199 int err = getaddrinfo(host.c_str(), NULL, &hints, &ai);
206 // getaddrinfo. Therefore, we call res_nclose only when there are ns
234 err = getaddrinfo(host.c_str(), NULL, &hints, &ai);
250 // If the call to getaddrinfo() failed because of a system error, report
winsock_init.cc 36 // call getaddrinfo() after Winsock has shutdown, which can lead to crashes.
host_resolver_proc.h 18 // Interface for a getaddrinfo()-like procedure. This is used by unit-tests
82 // (i.e. this calls out to getaddrinfo()). If successful returns OK and fills
  /libcore/luni/src/main/java/libcore/io/
StructAddrinfo.java 22 * Information returned/taken by getaddrinfo(3). Corresponds to C's {@code struct addrinfo} from
25 * TODO: we currently only _take_ a StructAddrinfo; getaddrinfo returns an InetAddress[].
GaiException.java 23 * An unchecked exception thrown when the {@link Os} {@code getaddrinfo} or {@code getnameinfo}
  /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/tcpdump/missing/
addrinfo.h 35 * Error return codes from getaddrinfo()
56 * Flag values for getaddrinfo()
85 extern int getaddrinfo (const char *, const char *,
  /external/chromium/chrome/common/net/
raw_host_resolver_proc.h 9 // RawHostResolverProc will eventually be a getaddrinfo() replacement. It
  /external/dropbear/
fake-rfc2553.h 137 #ifdef getaddrinfo
138 # undef getaddrinfo macro
140 #define getaddrinfo(a,b,c,d) (ssh_getaddrinfo(a,b,c,d)) macro
141 int getaddrinfo(const char *, const char *,
  /external/openssh/openbsd-compat/
fake-rfc2553.h 150 #ifdef getaddrinfo
151 # undef getaddrinfo macro
153 #define getaddrinfo(a,b,c,d) (ssh_getaddrinfo(a,b,c,d)) macro
154 int getaddrinfo(const char *, const char *,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libanl-2.7.so 
libanl.so 
libanl.so.1 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libanl-2.7.so 
libanl.so 
libanl.so.1 
  /system/netd/
MDnsSdListener.cpp 269 void MDnsSdListener::Handler::getAddrInfo(SocketClient *cli, int requestId,
271 if (VDBG) ALOGD("getAddrInfo(%d, %s %d, %s)", requestId, interfaceName, protocol, hostname);
275 ALOGE("request ID %d already in use during getAddrInfo call", requestId);
277 "RequestId already in use during getAddrInfo call", false);
285 ALOGE("getAddrInfo request %d got an error from DNSServiceGetAddrInfo %d", requestId,
289 "getAddrInfo request got an error from DNSServiceGetAddrInfo", false);
293 if (VDBG) ALOGD("getAddrInfo successful");
294 cli->sendMsg(ResponseCode::CommandOkay, "getAddrInfo started", false);
308 if (DBG) ALOGE("getAddrInfo failure for %d, error= %d", refNumber, errorCode);
323 ALOGD("getAddrInfo succeeded for %d: %s", refNumber, msg)
    [all...]
DnsProxyListener.cpp 76 uint32_t rv = getaddrinfo(mHost, mService, mHints, &result);
78 // getaddrinfo failed
103 NetdCommand("getaddrinfo") {
115 asprintf( &msg, "Invalid number of arguments to getaddrinfo: %i", argc);
  /bionic/libc/include/
netdb.h 138 * Error return codes from getaddrinfo()
157 * Flag values for getaddrinfo()
241 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
netdb.h 138 * Error return codes from getaddrinfo()
160 * Flag values for getaddrinfo()
244 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
netdb.h 138 * Error return codes from getaddrinfo()
160 * Flag values for getaddrinfo()
244 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
netdb.h 138 * Error return codes from getaddrinfo()
160 * Flag values for getaddrinfo()
244 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);

Completed in 926 milliseconds

1 2 3 4 5 6 7 8 91011