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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
gethostbyname.c 12 struct hostent* gethostbyname(const char* name) { function
hstrerror.c 23 return "Internal error in gethostbyname.";
27 snprintf(rtn, sizeof(rtn), "Unknown error in gethostbyname: %d.", err);
  /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_org/native_client_sdk/src/libraries/nacl_io/
host_resolver.h 35 struct hostent* gethostbyname(const char* name);
host_resolver.cc 104 struct hostent* HostResolver::gethostbyname(const char* name) { function in class:nacl_io::HostResolver
128 // We use a single hostent struct for all calls to to gethostbyname
129 // (as explicitly permitted by the spec - gethostbyname is NOT supposed to
432 // gethostbyname, and when the kernel_proxy object is destroyed.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsipv6ok.h 54 #undef gethostbyname macro
55 #define gethostbyname(a) gethostbyname_IPV6INCOMPATIBLE macro
  /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-libpac/src/
proxy_resolver_js_bindings.cc 65 struct hostent* he = gethostbyname(host.c_str());
76 struct hostent* he = gethostbyname(host.c_str());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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);
458 h2=GetHostByName(*host);
461 BIO_printf(bio_err,"gethostbyname failure\n");
467 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
521 { /* do a gethostbyname */
526 he=GetHostByName(str);
529 BIO_printf(bio_err,"gethostbyname failure\n");
535 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
580 static struct hostent *GetHostByName(char *name)
602 ret=gethostbyname(name)
    [all...]
  /external/ppp/pppd/plugins/radius/
ip_util.c 37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
  /system/netd/server/
DnsProxyListener.h 66 /* ------ gethostbyname ------*/
DnsProxyListener.cpp 231 * GetHostByName *
234 NetdCommand("gethostbyname"),
247 asprintf(&msg, "Invalid number of arguments to gethostbyname: %i", argc);
316 ALOGD("GetHostByNameHandler::run gethostbyname errno: %s hp->h_name = %s, name_len = %zu\n",
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
handlers.c 929 * Handle a call to gethostbyname() made by JavaScript.
931 * gethostbyname expects 1 parameter:
933 * on success, gethostbyname returns a result in |output|:
934 * 0: "gethostbyname"
939 * on failure, gethostbyname returns an error string in |out_error|.
944 CHECK_PARAM_COUNT(gethostbyname, 1);
947 struct hostent* info = gethostbyname(name);
949 *out_error = PrintfToNewString("gethostbyname failed, error is \"%s\"",
954 CREATE_RESPONSE(gethostbyname);
991 struct hostent* hostent = gethostbyname(hostname)
    [all...]
example.js 252 function gethostbyname(e) { function
254 postCall('gethostbyname', name, function(name, addrType) {
255 common.logMessage('gethostbyname returned successfully');
index.html 186 <input type="radio" id="radiogethostbyname" name="group">gethostbyname
194 <div class="function" id="gethostbyname" hidden>
198 <button>gethostbyname</button>
  /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);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_kernel_proxy.h 80 MOCK_METHOD1(gethostbyname, struct hostent*(const char*));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_network.c 118 host = gethostbyname(hostname);
  /external/mdnsresponder/mDNSPosix/
ExampleClientApp.c 25 #include <netdb.h> // For gethostbyname()
  /external/mesa3d/src/gallium/auxiliary/util/
u_network.c 118 host = gethostbyname(hostname);
  /system/core/libcutils/
socket_network_client.c 58 hp = gethostbyname(host);
  /ndk/sources/host-tools/make-3.81/
acinclude.m4 63 AC_CHECK_FUNCS(gethostbyname,,[
64 CF_RECHECK_FUNC(gethostbyname,nsl,cf_cv_netlibs)])

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 91011>>