Searched refs:host (Results 1 - 13 of 13) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_makeaddr.c36 * Formulate an Internet address from network + host. Used in
40 inet_makeaddr(in_addr_t net, in_addr_t host) argument
45 addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
47 addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
49 addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
51 addr = net | host;
/bionic/tests/libs/
H A DAndroid.build.testlib.host.mk18 build_type := host
H A DAndroid.build.testlib.mk17 include $(LOCAL_PATH)/Android.build.testlib.host.mk
/bionic/libc/dns/net/
H A Dgetnameinfo.c106 int getnameinfo(const struct sockaddr* sa, socklen_t salen, char* host, size_t hostlen, argument
109 return android_getnameinfofornet(sa, salen, host, hostlen, serv, servlen, flags,
113 int android_getnameinfofornet(const struct sockaddr* sa, socklen_t salen, char* host, argument
120 return getnameinfo_inet(sa, salen, host, hostlen,
123 return getnameinfo_local(sa, salen, host, hostlen,
137 char *host, socklen_t hostlen, char *serv, socklen_t servlen,
150 if (host && hostlen > 0)
151 strlcpy(host, sun->sun_path,
163 char *host, socklen_t hostlen,
178 /* host ma
136 getnameinfo_local(const struct sockaddr *sa, socklen_t salen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags __attribute__((unused))) argument
162 getnameinfo_inet(const struct sockaddr* sa, socklen_t salen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags, unsigned netid, unsigned mark) argument
351 ip6_parsenumeric(const struct sockaddr *sa, const char *addr, char *host, socklen_t hostlen, int flags) argument
[all...]
H A Dgethnamaddr.c459 * Note: we sort even if host can take only one address
735 * function that looks up host names.
1574 gethostbyname_r(name, &rs->host, rs->hostbuf, sizeof(rs->hostbuf), &result, &h_errno);
1584 gethostbyname2_r(name, af, &rs->host, rs->hostbuf, sizeof(rs->hostbuf), &result, &h_errno);
1596 hp = gethostbyname_internal(name, af, res, &rs->host, rs->hostbuf, sizeof(rs->hostbuf),
1619 return android_gethostbyaddrfornet_proxy_internal(addr, len, af, &rs->host, rs->hostbuf,
1634 memset(&rs->host, 0, sizeof(rs->host));
1635 return netbsd_gethostent_r(rs->hostf, &rs->host, rs->hostbuf, sizeof(rs->hostbuf), &h_errno);
/bionic/libc/dns/include/
H A Dresolv_static.h27 struct hostent host; member in struct:res_static
/bionic/libc/zoneinfo/
H A DAndroid.mk21 # The host build doesn't use bionic, but it does use bionic's zoneinfo data
25 LOCAL_MODULE := tzdata-host
36 LOCAL_MODULE := tzlookup.xml-host
/bionic/tests/
H A DAndroid.build.mk22 ifeq ($(build_type),host)
23 # Always make host multilib
32 ifeq ($(build_type),host)
111 ifeq ($(build_type),host)
112 # Only build if host builds are supported.
H A Drun-on-host.sh3 . $(dirname $0)/../build/run-on-host.sh
H A Dnetdb_test.cpp33 // It's okay for the host argument to be NULL, as long as service isn't.
42 // It's okay for the service argument to be NULL, as long as host isn't.
145 char host[NI_MAXHOST]; local
150 host, sizeof(host), NULL, 0, 0));
151 ASSERT_STREQ(host, "localhost");
163 char host[NI_MAXHOST]; local
168 host, sizeof(host), NULL, 0, 0));
169 VerifyLocalhostName(host);
[all...]
H A Difaddrs_test.cpp174 char host[NI_MAXHOST]; local
178 host, NI_MAXHOST, nullptr, 0, NI_NUMERICHOST);
181 strcpy(host, "???");
183 printf("\t\t%s: <%s>\n", what, host);
/bionic/benchmarks/
H A Drun-on-host.sh3 . $(dirname $0)/../build/run-on-host.sh
/bionic/tools/bionicbb/
H A Dbionicbb.py134 app.run(host='0.0.0.0', debug=True)

Completed in 241 milliseconds