Searched refs:best (Results 1 - 5 of 5) sorted by relevance
/bind-9.11.3/lib/lwres/ |
H A D | lwinetntop.c | 109 struct { int base, len; } best, cur; local 121 best.base = -1; 122 best.len = 0; 133 if (best.base == -1 || cur.len > best.len) 134 best = cur; 140 if (best.base == -1 || cur.len > best.len) 141 best = cur; 143 if (best [all...] |
/bind-9.11.3/lib/isc/ |
H A D | inet_ntop.c | 116 struct { int base, len; } best, cur; local 128 best.base = -1; 129 best.len = 0; /* silence compiler */ 140 if (best.base == -1 || cur.len > best.len) 141 best = cur; 147 if (best.base == -1 || cur.len > best.len) 148 best = cur; 150 if (best [all...] |
/bind-9.11.3/lib/dns/tests/ |
H A D | geoip_test.c | 439 * GeoIP best-database matching 444 ATF_TC(best); variable 445 ATF_TC_HEAD(best, tc) { 446 atf_tc_set_md_var(tc, "descr", "test best database matching"); 448 ATF_TC_BODY(best, tc) { 697 ATF_TP_ADD_TC(tp, best);
|
/bind-9.11.3/lib/dns/ |
H A D | view.c | 1139 * Otherwise, the glue is the best answer. 2123 dns_db_t *db, *best = NULL; local 2172 if (best != NULL) 2173 dns_db_detach(&best); 2176 dns_db_attach(db, &best); 2189 if (best != NULL) { 2190 dns_db_attach(best, dbp); 2191 dns_db_detach(&best);
|
H A D | resolver.c | 3010 dns_adbaddrinfo_t *best, *curr; local 3017 best = ISC_LIST_HEAD(find->list); 3018 best_srtt = best->srtt; 3019 if (isc_sockaddr_pf(&best->sockaddr) != AF_INET6) 3021 curr = ISC_LIST_NEXT(best, publink); 3027 best = curr; 3032 ISC_LIST_UNLINK(find->list, best, publink); 3033 ISC_LIST_APPEND(sorted, best, publink); 3043 dns_adbfind_t *best, *curr; local 3057 best [all...] |
Completed in 61 milliseconds