HomeSort by relevance Sort by last modified time
    Searched full:gethostbyname (Results 1 - 25 of 362) 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/
index.html 151 <input type="radio" id="radiogethostbyname" name="socketgroup" checked="checked">gethostbyname
154 <div class="function" id="gethostbyname">
158 <button>gethostbyname</button>
handlers.c 650 * Handle a call to gethostbyname() made by JavaScript.
652 * gethostbyname expects 1 parameter:
654 * on success, gethostbyname returns a result in |output| separated by \1:
655 * 0: "gethostbyname"
660 * on failure, gethostbyname returns an error string in |output|.
677 *output = PrintfToNewString("Error: gethostbyname takes 1 parameter.");
683 info = gethostbyname(name);
685 *output = PrintfToNewString("Error: gethostbyname failed, error is \"%s\"",
692 non_variable_len = strlen("gethostbyname") + 1
712 snprintf(*output, non_variable_len + 1, "gethostbyname\1%s\1%s"
    [all...]
example.js 197 function gethostbyname(e) { function
199 nacl_module.postMessage(makeCall('gethostbyname', name));
204 common.logMessage('gethostbyname returned successfully\n');
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_wrap_test.cc 330 TEST_F(KernelWrapTest, gethostbyname) {
331 EXPECT_CALL(mock, gethostbyname(NULL)).Times(1);
332 gethostbyname(NULL);
kernel_proxy_mock.h 66 MOCK_METHOD1(gethostbyname, struct hostent*(const char*));
  /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);

Completed in 2775 milliseconds

1 2 3 4 5 6 7 8 91011>>