Searched refs:next_domain (Results 1 – 4 of 4) sorted by relevance
36 int next_domain; /* next search domain to try */ member118 squery->next_domain = 0; in ares_search()125 squery->next_domain = 1; in ares_search()172 if (squery->next_domain < channel->ndomains) in search_callback()176 channel->domains[squery->next_domain], &s); in search_callback()182 squery->next_domain++; in search_callback()
74 int next_domain; /* next search domain to try */ member693 hquery->next_domain = -1; in ares_getaddrinfo()708 if (hquery->next_domain == -1) in next_dns_lookup()714 hquery->next_domain = 0; in next_dns_lookup()718 if (!s && hquery->next_domain == hquery->channel->ndomains) { in next_dns_lookup()723 hquery->next_domain++; in next_dns_lookup()726 if (!s && hquery->next_domain < hquery->channel->ndomains && !as_is_only(hquery)) in next_dns_lookup()730 hquery->channel->domains[hquery->next_domain++], in next_dns_lookup()
342 char *domain, *cur, *next_domain; in get_cookies() local357 next_domain = domain + 1; in get_cookies()380 cur = next_domain; in get_cookies()382 next_domain = strchr (cur + 1, '.'); in get_cookies()
1226 …OTS), where it will repeat the same query over and over as the hquery->next_domain doesn't increme…