/external/syslinux/core/lwip/src/api/ |
D | netdb.c | 163 size_t buflen, struct hostent **result, int *h_errnop) in lwip_gethostbyname_r() argument 171 if (h_errnop == NULL) { in lwip_gethostbyname_r() 173 h_errnop = &lh_errno; in lwip_gethostbyname_r() 178 *h_errnop = EINVAL; in lwip_gethostbyname_r() 185 *h_errnop = EINVAL; in lwip_gethostbyname_r() 192 *h_errnop = ERANGE; in lwip_gethostbyname_r() 203 *h_errnop = ENSRNOTFOUND; in lwip_gethostbyname_r()
|
/external/curl/lib/ |
D | hostip4.c | 161 int h_errnop; 178 &h_errnop); 198 &h_errnop); 264 h_errnop = SOCKERRNO; /* we don't deal with this, but set it anyway */
|
/external/curl/CMake/ |
D | CurlTests.c | 117 int h_errnop; in main() local 130 hp = gethostbyaddr_r(address, length, type, &h, buffer, 8192, &h_errnop); in main() 134 rc = gethostbyaddr_r(address, length, type, &h, buffer, 8192, &hp, &h_errnop); in main() 142 rc = gethostbyname_r(address, &h, buffer, 8192, &h_errnop); in main() 146 rc = gethostbyname_r(address, &h, buffer, 8192, &hp, &h_errnop); in main()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | netdb.h | 102 size_t buflen, struct hostent **result, int *h_errnop); 111 #define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \ argument 112 lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
|
/external/mdnsresponder/mDNSPosix/ |
D | nss_mdns.c | 415 int *h_errnop 445 int *h_errnop 478 int *h_errnop 535 int *h_errnop 665 int *h_errnop in _nss_mdns_gethostbyname_r() argument 676 name, AF_INET, result_buf, buf, buflen, errnop, h_errnop in _nss_mdns_gethostbyname_r() 689 int *h_errnop in _nss_mdns_gethostbyname2_r() argument 700 name, af, result_buf, buf, buflen, errnop, h_errnop in _nss_mdns_gethostbyname2_r() 714 int *h_errnop in _nss_mdns_gethostbyaddr_r() argument 739 *h_errnop = HOST_NOT_FOUND; in _nss_mdns_gethostbyaddr_r() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 2255 int *h_errnop) { 2258 h_errnop); 2262 int res = REAL(gethostbyname_r)(name, ret, buf, buflen, result, h_errnop); 2267 if (h_errnop) 2268 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, h_errnop, sizeof(*h_errnop)); 2278 SIZE_T buflen, __sanitizer_hostent **result, int *h_errnop) { 2281 h_errnop); 2285 int res = REAL(gethostent_r)(ret, buf, buflen, result, h_errnop); 2290 if (h_errnop) 2291 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, h_errnop, sizeof(*h_errnop)); [all …]
|
/external/python/cpython2/ |
D | configure.ac | 3693 int h_errnop; 3695 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop) 3711 int h_errnop; 3713 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
|
D | configure | 12643 int h_errnop; 12645 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop) 12680 int h_errnop; 12682 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
|
/external/python/cpython3/ |
D | configure.ac | 4082 int h_errnop; 4084 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop) 4100 int h_errnop; 4102 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
|
D | configure | 13621 int h_errnop; 13623 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop) 13658 int h_errnop; 13660 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
|