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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
gethostbyname.c 12 struct hostent* gethostbyname(const char* name) { function
hstrerror.cc 27 "Internal error in gethostbyname.";
29 "Unknown error in gethostbyname: ";
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
host_resolver.h 22 struct hostent* gethostbyname(const char* name);
host_resolver.cc 29 struct hostent* HostResolver::gethostbyname(const char* name) { function in class:nacl_io::HostResolver
63 // We use a single hostent struct for all calls to to gethostbyname
64 // (as explicitly permitted by the spec - gethostbyname is NOT supposed to
79 // Sometimes GetCanonicalName gives up more easily than gethostbyname should
153 // gethostbyname, and when the kernel_proxy object is destroyed.
  /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)
  /cts/tests/tests/net/jni/
NativeDnsJni.c 140 // gethostbyname
141 struct hostent *my_hostent = gethostbyname("www.youtube.com");
143 ALOGD("gethostbyname(www.youtube.com) gave null response");
147 ALOGD("gethostbyname(www.youtube.com) gave 0 addresses");
155 ALOGD("gethostbyname(www.youtube.com) gave %s", buf);
  /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/chromium-libpac/src/
proxy_resolver_js_bindings.cc 65 struct hostent* he = gethostbyname(host.c_str());
76 struct hostent* he = gethostbyname(host.c_str());
  /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/chromium_org/third_party/openssl/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/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/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
handlers.c 749 * Handle a call to gethostbyname() made by JavaScript.
751 * gethostbyname expects 1 parameter:
753 * on success, gethostbyname returns a result in |output| separated by \1:
754 * 0: "gethostbyname"
759 * on failure, gethostbyname returns an error string in |output|.
777 *output = PrintfToNewString("gethostbyname takes 1 parameter.");
783 info = gethostbyname(name);
785 *output = PrintfToNewString("gethostbyname failed, error is \"%s\"",
792 non_variable_len = strlen("gethostbyname") + 1
812 snprintf(*output, non_variable_len + 1, "gethostbyname\1%s\1%s"
    [all...]
index.html 179 <input type="radio" id="radiogethostbyname" name="group">gethostbyname
186 <div class="function" id="gethostbyname" hidden>
190 <button>gethostbyname</button>
  /external/ppp/pppd/plugins/radius/
ip_util.c 37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
  /system/netd/
DnsProxyListener.h 69 /* ------ gethostbyname ------*/
  /external/chromium_org/third_party/openssl/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);
  /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 

Completed in 363 milliseconds

1 2 3 4 5 6 7 8 91011>>