HomeSort by relevance Sort by last modified time
    Searched refs:ndots (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/net/dns/
dns_config_service.cc 19 ndots(1),
35 (ndots == d.ndots) &&
46 ndots = d.ndots;
67 dict->SetInteger("ndots", ndots);
dns_config_service.h 57 // is less than |ndots|.
73 int ndots; member in struct:net::DnsConfig
dns_config_service_posix_unittest.cc 37 res->ndots = 2;
85 config->ndots = 2;
dns_config_service_posix.cc 350 dns_config->ndots = res.ndots;
dns_transaction.cc 602 int ndots = CountLabels(labeled_hostname) - 1; local
604 if (ndots > 0 && !config.append_to_multi_label_name) {
612 if (ndots >= config.ndots) {
630 if (ndots > 0 && !had_hostname)
dns_transaction_unittest.cc 662 config_.ndots = 2;
690 config_.ndots = 2;
798 config_.ndots = 2;
    [all...]
dns_config_service_win.cc 418 config->ndots = 1;
  /external/smack/src/org/xbill/DNS/
ResolverConfig.java 38 private int ndots = -1; field in class:ResolverConfig
101 int ndots = Integer.parseInt(token); local
102 if (ndots >= 0) {
104 System.out.println("setting ndots " + token);
105 return ndots;
123 if (ndots < 0 && lndots > 0)
124 ndots = lndots;
258 if (token.startsWith("ndots:")) {
482 * Returns the located ndots value, or the default (1) if not configured.
483 * Note that ndots can only be configured in a resolv.conf file, and will onl
488 ndots() { method in class:ResolverConfig
    [all...]
Lookup.java 93 defaultNdots = ResolverConfig.getCurrentConfig().ndots();
359 * Sets ndots to use when performing this lookup, overriding the default value.
363 * @param ndots The ndots value to use, which must be greater than or equal to
367 setNdots(int ndots) {
368 if (ndots < 0)
369 throw new IllegalArgumentException("Illegal ndots value: " +
370 ndots);
371 defaultNdots = ndots;
  /external/chromium/third_party/libevent/
evdns.h 126 * number is greater than the ndots setting then the names is first tried
129 * The ndots setting can either be set from a resolv.conf, or by calling
132 * For example, with ndots set to 1 (the default) and a search domain list of
370 ndots, timeout, max-timeouts, max-inflight, and attempts
434 Set the 'ndots' parameter for searches.
439 @param ndots the new ndots parameter
441 void evdns_search_ndots_set(const int ndots);
evdns.c 2385 int ndots; member in struct:search_state
2656 const int ndots = strtoint(val); local
    [all...]
  /external/chromium_org/third_party/libevent/
evdns.h 126 * number is greater than the ndots setting then the names is first tried
129 * The ndots setting can either be set from a resolv.conf, or by calling
132 * For example, with ndots set to 1 (the default) and a search domain list of
370 ndots, timeout, max-timeouts, max-inflight, and attempts
434 Set the 'ndots' parameter for searches.
439 @param ndots the new ndots parameter
441 void evdns_search_ndots_set(const int ndots);
evdns.c 2385 int ndots; member in struct:search_state
2656 const int ndots = strtoint(val); local
    [all...]
  /bionic/libc/netbsd/resolv/
res_init.c 218 statp->ndots = 1;
497 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
498 i = atoi(cp + sizeof("ndots:") - 1);
500 statp->ndots = i;
502 statp->ndots = RES_MAXNDOTS;
505 printf(";;\tndots=%d\n", statp->ndots);
res_query.c 252 * try 'as is'. The threshold can be set with the "ndots" option.
256 if (dots >= statp->ndots || trailing_dot) {
  /external/iproute2/examples/
dhcp-client-script 313 echo options ndots:1 >> /etc/resolv.conf.dhcp
  /bionic/libc/private/
resolv_private.h 165 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
resolv.h 117 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
resolv.h 117 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
resolv.h 117 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
  /external/chromium_org/net/tools/gdig/
gdig.cc 73 base::StringAppendF(&output, "options ndots:%d\n", dns_config.ndots);
  /bionic/libc/netbsd/net/
getaddrinfo.c     [all...]

Completed in 415 milliseconds