Home
last modified time | relevance | path

Searched refs:next_domain (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/cares/src/lib/
Dares_search.c36 int next_domain; /* next search domain to try */ member
118 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()
Dares_getaddrinfo.c74 int next_domain; /* next search domain to try */ member
693 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()
/third_party/libsoup/libsoup/
Dsoup-cookie-jar.c342 char *domain, *cur, *next_domain; in get_cookies() local
357 next_domain = domain + 1; in get_cookies()
380 cur = next_domain; in get_cookies()
382 next_domain = strchr (cur + 1, '.'); in get_cookies()
/third_party/node/deps/cares/
DCHANGES1226 …OTS), where it will repeat the same query over and over as the hquery->next_domain doesn't increme…