| /src/external/mpl/bind/dist/lib/dns/ |
| ipkeylist.c | 27 dns_ipkeylist_init(dns_ipkeylist_t *ipkl) { 28 ipkl->count = 0; 29 ipkl->allocated = 0; 30 ipkl->addrs = NULL; 31 ipkl->sources = NULL; 32 ipkl->keys = NULL; 33 ipkl->tlss = NULL; 34 ipkl->labels = NULL; 38 dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *ipkl) { 39 REQUIRE(ipkl != NULL) [all...] |
| catz.c | 1380 catz_process_primaries(dns_catz_zone_t *catz, dns_ipkeylist_t *ipkl, 1395 REQUIRE(ipkl != NULL); 1483 for (i = 0; i < ipkl->count; i++) { 1484 if (ipkl->labels[i] != NULL && 1485 !dns_name_compare(name, ipkl->labels[i])) 1491 if (i < ipkl->count) { /* we have this record already */ 1493 ipkl->keys[i] = keyname; 1495 memmove(&ipkl->addrs[i], &sockaddr, 1499 result = dns_ipkeylist_resize(mctx, ipkl, i + 1); 1504 ipkl->labels[i] = isc_mem_get(mctx [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| ipkeylist.c | 27 dns_ipkeylist_init(dns_ipkeylist_t *ipkl) { 28 ipkl->count = 0; 29 ipkl->allocated = 0; 30 ipkl->addrs = NULL; 31 ipkl->dscps = NULL; 32 ipkl->keys = NULL; 33 ipkl->labels = NULL; 37 dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *ipkl) { 40 REQUIRE(ipkl != NULL); 42 if (ipkl->allocated == 0) [all...] |
| catz.c | 1062 catz_process_masters(dns_catz_zone_t *zone, dns_ipkeylist_t *ipkl, 1078 REQUIRE(ipkl != NULL); 1163 for (i = 0; i < ipkl->count; i++) { 1164 if (ipkl->labels[i] != NULL && 1165 !dns_name_compare(name, ipkl->labels[i])) 1171 if (i < ipkl->count) { /* we have this record already */ 1173 ipkl->keys[i] = keyname; 1175 memmove(&ipkl->addrs[i], &sockaddr, 1179 result = dns_ipkeylist_resize(mctx, ipkl, i + 1); 1184 ipkl->labels[i] = isc_mem_get(mctx, sizeof(dns_name_t)) [all...] |
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| ipkeylist.h | 39 dns_ipkeylist_init(dns_ipkeylist_t *ipkl); 41 * Reset ipkl to empty state 44 *\li 'ipkl' to be non NULL. 48 dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *ipkl); 50 * Free `ipkl` contents using `mctx`. 52 * After this call, `ipkl` is a freshly cleared structure with all 57 *\li 'ipkl' to be non NULL. 77 dns_ipkeylist_resize(isc_mem_t *mctx, dns_ipkeylist_t *ipkl, unsigned int n); 79 * Resize ipkl to contain n elements. Size (count) is not changed, and the 85 * \li 'n' >= ipkl->coun [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| ipkeylist.h | 39 dns_ipkeylist_init(dns_ipkeylist_t *ipkl); 41 * Reset ipkl to empty state 44 *\li 'ipkl' to be non NULL. 48 dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *ipkl); 50 * Free `ipkl` contents using `mctx`. 52 * After this call, `ipkl` is a freshly cleared structure with all 57 *\li 'ipkl' to be non NULL. 77 dns_ipkeylist_resize(isc_mem_t *mctx, dns_ipkeylist_t *ipkl, unsigned int n); 79 * Resize ipkl to contain n elements. Size (count) is not changed, and the 85 * \li 'n' >= ipkl->coun [all...] |
| /src/external/mpl/bind/dist/bin/named/ |
| config.c | 820 isc_mem_t *mctx, dns_ipkeylist_t *ipkl) { 826 REQUIRE(ipkl != NULL); 827 REQUIRE(ipkl->count == 0); 828 REQUIRE(ipkl->addrs == NULL); 829 REQUIRE(ipkl->keys == NULL); 830 REQUIRE(ipkl->tlss == NULL); 831 REQUIRE(ipkl->labels == NULL); 832 REQUIRE(ipkl->allocated == 0); 861 ipkl->addrs = s.addrs; 862 ipkl->keys = s.keys [all...] |
| zoneconf.c | 1277 dns_ipkeylist_t ipkl; local 1278 dns_ipkeylist_init(&ipkl); 1281 &ipkl)); 1282 dns_zone_setalsonotify(zone, ipkl.addrs, ipkl.sources, 1283 ipkl.keys, ipkl.tlss, 1284 ipkl.count); 1285 dns_ipkeylist_clear(mctx, &ipkl); 1639 dns_ipkeylist_t ipkl; local 1819 dns_ipkeylist_t ipkl; local [all...] |
| server.c | 3198 dns_ipkeylist_t ipkl; local 3202 dns_ipkeylist_init(&ipkl); 3225 &ipkl); 3267 if (ipkl.count != 0) { 3269 * Transfer the ownership of the pointers inside 'ipkl' and 3272 opts->masters = ipkl; 3273 ipkl.count = 0; 3304 if (ipkl.count != 0) { 3305 dns_ipkeylist_clear(view->mctx, &ipkl);
|
| /src/external/mpl/bind/dist/bin/named/include/named/ |
| config.h | 63 isc_mem_t *mctx, dns_ipkeylist_t *ipkl);
|