Searched defs:find (Results 1 - 14 of 14) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dmap_test.c117 ATF_TC(find); variable
118 ATF_TC_HEAD(find, tc)
122 ATF_TC_BODY(find, tc)
405 ATF_TP_ADD_TC(tp, find);
/bind-9.11.3/lib/dns/tests/
H A Ddbversion_test.c178 find(isc_assertioncallback_t callback) { function
203 ATF_TC(find); variable
204 ATF_TC_HEAD(find, tc) {
207 ATF_TC_BODY(find, tc) {
211 find(NULL);
222 find(local_callback);
710 ATF_TP_ADD_TC(tp, find);
H A Dkeytable_test.c333 ATF_TC(find); variable
334 ATF_TC_HEAD(find, tc) {
335 atf_tc_set_md_var(tc, "descr", "check find-variant operations");
337 ATF_TC_BODY(find, tc) {
610 ATF_TP_ADD_TC(tp, find);
/bind-9.11.3/bin/named/
H A Dlwdgabn.c62 setup_addresses(ns_lwdclient_t *client, dns_adbfind_t *find, unsigned int at) { argument
74 ai = ISC_LIST_HEAD(find->list);
168 * We must make certain the client->find is not still active.
172 if (client->find == client->v4find || client->find == client->v6find)
173 client->find = NULL;
175 if (client->find != NULL)
176 dns_adb_destroyfind(&client->find);
337 ns_lwdclient_log(50, "find done for task %p, client %p", task, client);
349 client->v4find = client->find;
[all...]
/bind-9.11.3/bin/tests/
H A Dadb_test.c42 dns_adbfind_t *find; member in struct:client
88 client->find = NULL;
103 INSIST(client->find == NULL);
123 INSIST(client->find == ev->ev_sender);
127 task, ev, ev->ev_type, client->find, client,
128 isc_result_totext(client->find->result_v4),
129 isc_result_totext(client->find->result_v6));
136 dns_adb_dumpfind(client->find, stderr);
137 dns_adb_destroyfind(&client->find);
260 now, NULL, view->dstport, &client->find);
[all...]
H A Dbyname_test.c42 static dns_adbfind_t *find = NULL; variable
120 &find);
122 if (!ISC_LIST_EMPTY(find->list)) {
127 INSIST((find->options & DNS_ADBFIND_WANTEVENT) == 0);
128 print_addresses(find);
135 if ((find->options & DNS_ADBFIND_WANTEVENT) == 0) {
157 if (find != NULL)
158 dns_adb_destroyfind(&find);
170 dns_adb_destroyfind(&find);
/bind-9.11.3/bin/named/include/named/
H A Dlwdclient.h61 dns_adbfind_t *find; member in struct:ns_lwdclient
/bind-9.11.3/lib/dns/
H A Decdb.c285 find(dns_db_t *db, dns_name_t *name, dns_dbversion_t *version, function
553 find,
H A Dsdlz.c601 * set, then we try to find a wildcard entry.
1052 find(dns_db_t *db, dns_name_t *name, dns_dbversion_t *version, function
1263 * getoriginnode() is used by the update code to find the
1295 find,
1509 * either the find zone or the allow zone transfer method.
1618 /* Call SDLZ driver's find zone method */
1723 /* Call SDLZ driver's find zone method */
H A Dadb.c997 * can find out if any new information was added or not.
1450 dns_adbfind_t *find; local
1453 find = event->ev_destroy_arg;
1454 INSIST(DNS_ADBFIND_VALID(find));
1456 LOCK(&find->lock);
1457 find->flags |= FIND_EVENT_FREED;
1459 UNLOCK(&find->lock);
1471 dns_adbfind_t *find; local
1480 find = ISC_LIST_HEAD(name->finds);
1481 while (find !
1969 dns_adbfind_t *find; local
2176 copy_namehook_lists(dns_adb_t *adb, dns_adbfind_t *find, dns_name_t *qname, dns_rdatatype_t qtype, dns_adbname_t *name, isc_stdtime_t now) argument
2948 dns_adbfind_t *find; local
3290 dns_adbfind_t *find; local
3347 dns_adb_cancelfind(dns_adbfind_t *find) argument
3574 dns_adb_dumpfind(dns_adbfind_t *find, FILE *f) argument
3668 dns_adbfind_t *find; local
[all...]
H A Dresolver.c285 dns_adbfind_t * find; member in struct:fetchctx
899 dns_adbfind_t *find; local
1013 for (find = ISC_LIST_HEAD(fctx->finds);
1014 find != NULL;
1015 find = ISC_LIST_NEXT(find, publink))
1016 for (addrinfo = ISC_LIST_HEAD(find->list);
1029 for (find = ISC_LIST_HEAD(fctx->altfinds);
1030 find != NULL;
1031 find
1112 dns_adbfind_t *find, *next_find; local
1129 dns_adbfind_t *find, *next_find; local
2769 dns_adbfind_t *find; local
3009 sort_adbfind(dns_adbfind_t *find, unsigned int bias) argument
3088 dns_adbfind_t *find; local
3563 dns_adbfind_t *find, *start; local
[all...]
H A Dzone.c573 dns_adbfind_t *find; member in struct:dns_notify
3675 * For non-dynamic zones we only need to find a supported algorithm.
4268 * Walk the zone DB. If we find any keys whose names are no longer
4310 * Now walk secroots to find any managed keys that aren't
4311 * in the zone. If we find any, we add them to the zone.
4551 "could not find NS and/or SOA records");
7502 * by a delegation or a DNAME, nodes are skipped over until we find one
9206 * First scan keydataset to find keys that are not in dnskeyset
9238 * automatically trust all the keys we find at the zone apex.
10505 if (notify->find !
[all...]
/bind-9.11.3/lib/dns/include/dns/
H A Ddb.h93 isc_result_t (*find)(dns_db_t *db, dns_name_t *name, member in struct:dns_dbmethods
770 * dns_db_findext() (find extended) also accepts parameters 'methods'
/bind-9.11.3/bin/tests/system/dyndb/driver/
H A Ddb.c5 * struct sampledb_methods to find appropriate function implementation.
43 * Most dns_db_* calls (find(), createiterator(), etc.)
205 find(dns_db_t *db, dns_name_t *name, dns_dbversion_t *version, function
595 find,

Completed in 69 milliseconds