/external/chromium_org/net/dns/ |
dns_config_service_posix_unittest.cc | 35 res->options = RES_INIT | RES_RECURSE | RES_DEFNAMES | RES_DNSRCH | 131 res.options = RES_INIT | RES_RECURSE | RES_DEFNAMES | RES_DNSRCH;
|
dns_config_service_posix.cc | 85 // Note: res_ninit in glibc always returns 0 and sets RES_INIT. 86 // res_init behaves the same way. 88 if (res_init() == 0) { 317 if (!(res.options & RES_INIT))
|
/bionic/libc/netbsd/resolv/ |
res_data.c | 85 #define res_need_init() ((_nres.options & RES_INIT) == 0U) 88 res_init(void) { function 115 * fields of _res before res_init() is called, res_init() will not 117 * _zero_ before calling res_init(), hoping to override what used 124 * before res_init() was first called. We can't replicate that semantic 127 * "broken". They could fool us by setting RES_INIT but none do (yet). 133 if (!(_nres.options & RES_INIT)) 162 if (res_need_init() && res_init() == -1) 178 if (res_need_init() && res_init() == -1) [all...] |
res_state.c | 163 D("%s: tid=%d, rt=%p, resetting DNS state (options RES_INIT=%d)", 164 __FUNCTION__, gettid(), rt, (rt->_nres->options & RES_INIT) != 0);
|
res_init.c | 1 /* $NetBSD: res_init.c,v 1.8 2006/03/19 03:10:08 christos Exp $ */ 76 static const char sccsid[] = "@(#)res_init.c 8.1 (Berkeley) 6/7/93"; 77 static const char rcsid[] = "Id: res_init.c,v 1.9.2.5.4.2 2004/03/16 12:34:18 marka Exp"; 79 __RCSID("$NetBSD: res_init.c,v 1.8 2006/03/19 03:10:08 christos Exp $"); 182 if ((statp->options & RES_INIT) != 0U) 463 printf(";; res_init()... default dnsrch list:\n"); 475 statp->options |= RES_INIT; 678 statp->options &= ~RES_INIT;
|
res_debug.c | 614 case RES_INIT: return "init";
|
/external/chromium/net/base/ |
dnsrr_resolver.cc | 188 if ((_res.options & RES_INIT) == 0) { 241 // options: RES_DEFNAMES and RES_DNSRCH (see res_init(3)). 242 _res.options = RES_INIT | RES_RECURSE | RES_USE_EDNS0 | RES_USE_DNSSEC;
|
/bionic/libc/private/ |
resolv_private.h | 230 #define RES_INIT 0x00000001 /* address initialized */ 310 #define res_init __res_init macro 322 int res_init(void);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
resolv.h | 195 #define RES_INIT 0x00000001 /* address initialized */ 253 #define res_init __res_init macro 267 int res_init (void) __THROW;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
resolv.h | 195 #define RES_INIT 0x00000001 /* address initialized */ 253 #define res_init __res_init macro 267 int res_init (void) __THROW;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
resolv.h | 195 #define RES_INIT 0x00000001 /* address initialized */ 253 #define res_init __res_init macro 267 int res_init (void) __THROW;
|
/external/openssh/openbsd-compat/ |
getrrsetbyname.c | 221 if ((_resp->options & RES_INIT) == 0 && res_init() == -1) {
|
/external/chromium_org/third_party/libxml/src/ |
nanohttp.c | 1055 if (!(_res.options & RES_INIT)) 1056 res_init(); [all...] |
/external/libxml2/ |
nanohttp.c | 1053 if (!(_res.options & RES_INIT)) 1054 res_init(); [all...] |