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

1 2 3 4 5 6 7 8 91011

  /system/extras/tests/bionic/libc/common/
test_gethostbyname.c 45 hent = gethostbyname(hostname);
47 printf("gethostbyname(%s) returned NULL !!\n", hostname);
50 printf( "gethostbyname(%s) returned:\n", hostname);
  /development/tools/axl/
udpServer.py 15 ip = socket.gethostbyname(hostname)
udpEater.py 34 ip = socket.gethostbyname(hostname)
  /external/chromium/third_party/libjingle/source/talk/base/
nethelpers.cc 60 // The functions below are used to do gethostbyname, but with an allocated
70 hostent* ent = gethostbyname(hostname);
125 // gethostbyname() is not thread safe, so we need to call gethostbyname_r()
126 // which is a reentrant version of gethostbyname().
158 #error "I don't know how to do gethostbyname safely on your system."
nethelpers.h 69 // using a static variable like the normal gethostbyname.
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressThreadTest.java 33 * This class is used to test inet_ntoa, gethostbyaddr and gethostbyname
35 * the gethostbyname function to be called. getHostName will cause the
94 threadedTestErrorString = (testType == 0 ? "gethostbyname"
104 threadedTestErrorString = (testType == 0 ? "gethostbyname"
  /external/openssl/apps/
s_socket.c 100 static struct hostent *GetHostByName(char *name);
457 h2=GetHostByName(*host);
460 BIO_printf(bio_err,"gethostbyname failure\n");
465 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
518 { /* do a gethostbyname */
523 he=GetHostByName(str);
526 BIO_printf(bio_err,"gethostbyname failure\n");
532 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
577 static struct hostent *GetHostByName(char *name)
599 ret=gethostbyname(name)
    [all...]
  /external/tcpdump/missing/
resolv6.h 35 #define RES_USE_INET6 0x80000000 /* use/map IPv6 in gethostbyname() */
  /system/core/libcutils/
socket_network_client.c 46 hp = gethostbyname(host);
  /external/ppp/pppd/plugins/radius/
ip_util.c 37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
  /external/openssl/crypto/bio/
b_sock.c 143 /* do a gethostbyname */
378 /* Caching gethostbyname() results forever is wrong,
379 * so we have to let the true gethostbyname() worry about this */
381 return gethostbyname((char*)name);
383 return gethostbyname(name);
425 ret=gethostbyname((char *)name);
427 ret=gethostbyname(name);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/lib/
libmudflap.so 
libmudflap.so.0 
libmudflap.so.0.0.0 
libmudflapth.so 
libmudflapth.so.0 
libmudflapth.so.0.0.0 
  /external/mdnsresponder/mDNSPosix/
ExampleClientApp.c 25 #include <netdb.h> // For gethostbyname()
  /bionic/libc/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
211 struct hostent *gethostbyname(const char *);
  /ndk/sources/host-tools/make-3.81/
acinclude.m4 63 AC_CHECK_FUNCS(gethostbyname,,[
64 CF_RECHECK_FUNC(gethostbyname,nsl,cf_cv_netlibs)])
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
214 struct hostent *gethostbyname(const char *);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
214 struct hostent *gethostbyname(const char *);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
214 struct hostent *gethostbyname(const char *);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
214 struct hostent *gethostbyname(const char *);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
netdb.h 125 * Error return codes from gethostbyname() and gethostbyaddr()
214 struct hostent *gethostbyname(const char *);

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011