/bind-9.11.3/lib/dns/include/dns/ |
H A D | nta.h | 49 dns_rbt_t *table; member in struct:dns_ntatable 60 * Create an NTA table in view 'view'. 72 *\li On success, *ntatablep is a valid, empty NTA table. 125 *\li If an NTA already exists in the table, its expiry time 178 * Dump the NTA table to buffer at 'buf' 181 * \li "ntatable" is a valid table. 189 * Dump the NTA table to the file opened as 'fp'. 195 * Save the NTA table to the file opened as 'fp', for later loading.
|
H A D | compress.h | 59 /*% Global compression table. */ 60 dns_compressnode_t *table[DNS_COMPRESS_TABLESIZE]; member in struct:dns_compress 61 /*% Preallocated nodes for the table. */ 179 * Finds longest possible match of 'name' in the global compression table. 198 * Add compression pointers for 'name' to the compression table, 215 * Remove any compression pointers from global table >= offset.
|
/bind-9.11.3/lib/isc/ |
H A D | result.c | 181 resulttable *table; local 191 table = malloc(sizeof(*table)); 192 if (table == NULL) 194 table->base = base; 195 table->last = base + nresults - 1; 196 table->text = text; 197 table->msgcat = msgcat; 198 table->set = set; 199 ISC_LINK_INIT(table, lin 247 resulttable *table; local [all...] |
H A D | ht.c | 40 isc_ht_node_t **table; member in struct:isc_ht 70 ht->table = isc_mem_get(ht->mctx, ht->size * sizeof(isc_ht_node_t*)); 71 if (ht->table == NULL) { 77 ht->table[i] = NULL; 99 isc_ht_node_t *node = ht->table[i]; 112 isc_mem_put(ht->mctx, ht->table, ht->size * sizeof(isc_ht_node_t*)); 129 node = ht->table[hash & ht->mask]; 144 node->next = ht->table[hash & ht->mask]; 148 ht->table[hash & ht->mask] = node; 164 node = ht->table[has [all...] |
H A D | symtab.c | 42 eltlist_t * table; member in struct:isc_symtab 68 symtab->table = (eltlist_t *)isc_mem_get(mctx, 70 if (symtab->table == NULL) { 75 INIT_LIST(symtab->table[i]); 100 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { 110 isc_mem_put(symtab->mctx, symtab->table, 147 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 153 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 202 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { 207 UNLINK(symtab->table[ [all...] |
H A D | mem.c | 517 unsigned char **table; local 534 table = (ctx->memalloc)(ctx->arg, 536 if (table == NULL) { 541 memmove(table, ctx->basic_table, 546 ctx->basic_table = table;
|
/bind-9.11.3/lib/isccc/ |
H A D | symtab.c | 55 eltlist_t * table; member in struct:isccc_symtab 77 symtab->table = malloc(size * sizeof(eltlist_t)); 78 if (symtab->table == NULL) { 83 ISC_LIST_INIT(symtab->table[i]); 97 ISC_LIST_UNLINK(symtab->table[bucket], elt, link); 115 for (elt = ISC_LIST_HEAD(symtab->table[i]); 122 free(symtab->table); 168 for (e = ISC_LIST_HEAD((s)->table[b]); \ 176 for (e = ISC_LIST_HEAD((s)->table[b]); \ 223 ISC_LIST_UNLINK(symtab->table[bucke [all...] |
/bind-9.11.3/lib/dns/ |
H A D | forward.c | 29 dns_rbt_t *table; member in struct:dns_fwdtable 49 fwdtable->table = NULL; 50 result = dns_rbt_create(mctx, auto_detach, fwdtable, &fwdtable->table); 66 dns_rbt_destroy(&fwdtable->table); 105 result = dns_rbt_addname(fwdtable->table, name, forwarders); 156 result = dns_rbt_addname(fwdtable->table, name, forwarders); 181 result = dns_rbt_deletename(fwdtable->table, name, ISC_FALSE); 207 result = dns_rbt_findname(fwdtable->table, name, 0, foundname, 226 dns_rbt_destroy(&fwdtable->table);
|
H A D | ssu.c | 33 #define VALID_SSUTABLE(table) ISC_MAGIC_VALID(table, SSUTABLEMAGIC) 36 #define VALID_SSURULE(table) ISC_MAGIC_VALID(table, SSURULEMAGIC) 62 dns_ssutable_t *table; local 67 table = isc_mem_get(mctx, sizeof(dns_ssutable_t)); 68 if (table == NULL) 70 result = isc_mutex_init(&table->lock); 72 isc_mem_put(mctx, table, sizeof(dns_ssutable_t)); 75 table 85 destroy(dns_ssutable_t *table) argument 131 dns_ssutable_t *table; local 152 dns_ssutable_addrule(dns_ssutable_t *table, isc_boolean_t grant, dns_name_t *identity, unsigned int matchtype, dns_name_t *name, unsigned int ntypes, dns_rdatatype_t *types) argument 341 dns_ssutable_checkrules(dns_ssutable_t *table, dns_name_t *signer, dns_name_t *name, isc_netaddr_t *addr, dns_rdatatype_t type, const dst_key_t *key) argument 352 dns_ssutable_checkrules2(dns_ssutable_t *table, dns_name_t *signer, dns_name_t *name, isc_netaddr_t *addr, isc_boolean_t tcp, const dns_aclenv_t *env, dns_rdatatype_t type, const dst_key_t *key) argument 589 dns_ssutable_firstrule(const dns_ssutable_t *table, dns_ssurule_t **rule) argument 613 dns_ssutable_t *table = NULL; local [all...] |
H A D | badcache.c | 36 dns_bcentry_t **table; member in struct:dns_badcache 76 bc->table = isc_mem_get(bc->mctx, sizeof(*bc->table) * size); 77 if (bc->table == NULL) { 83 memset(bc->table, 0, bc->size * sizeof(dns_bcentry_t *)); 110 isc_mem_put(bc->mctx, bc->table, sizeof(dns_bcentry_t *) * bc->size); 131 for (bad = bc->table[i]; bad != NULL; bad = next) { 142 bc->table[i] = NULL; 145 isc_mem_put(bc->mctx, bc->table, sizeof(*bc->table) * b [all...] |
H A D | keytable.c | 41 dns_rbt_t *table; member in struct:dns_keytable 76 keytable->table = NULL; 77 result = dns_rbt_create(mctx, free_keynode, mctx, &keytable->table); 111 dns_rbt_destroy(&keytable->table); 153 dns_rbt_destroy(&keytable->table); 181 result = dns_rbt_addnode(keytable->table, keyname, &node); 185 /* Key already in table? */ 249 result = dns_rbt_findnode(keytable->table, keyname, NULL, &node, NULL, 253 result = dns_rbt_deletenode(keytable->table, 277 result = dns_rbt_findnode(keytable->table, keynam [all...] |
H A D | zt.c | 43 dns_rbt_t *table; member in struct:dns_zt 78 zt->table = NULL; 79 result = dns_rbt_create(mctx, auto_detach, zt, &zt->table); 101 dns_rbt_destroy(&zt->table); 121 result = dns_rbt_addname(zt->table, name, zone); 141 result = dns_rbt_deletename(zt->table, name, ISC_FALSE); 163 result = dns_rbt_findname(zt->table, name, rbtoptions, foundname, 200 dns_rbt_destroy(&zt->table); 436 result = dns_rbtnodechain_first(&chain, zt->table, NULL, NULL); 460 result = dns_rbtnodechain_first(&chain, zt->table, NUL [all...] |
H A D | rcode.c | 271 struct tbl *table, unsigned int max) 280 for (i = 0; table[i].name != NULL; i++) { 282 n = strlen(table[i].name); 284 (table[i].flags & TOTEXTONLY) == 0 && 285 strncasecmp(source->base, table[i].name, n) == 0) { 286 *valuep = table[i].value; 295 struct tbl *table) 299 while (table[i].name != NULL) { 300 if (table[i].value == value) { 301 return (str_totext(table[ 270 dns_mnemonic_fromtext(unsigned int *valuep, isc_textregion_t *source, struct tbl *table, unsigned int max) argument 294 dns_mnemonic_totext(unsigned int value, isc_buffer_t *target, struct tbl *table) argument [all...] |
H A D | zone.c | 2197 /* Inform the zone table we've finished loading */ 15356 dns_zone_getssutable(dns_zone_t *zone, dns_ssutable_t **table) { argument 15358 REQUIRE(table != NULL); 15359 REQUIRE(*table == NULL); 15363 dns_ssutable_attach(zone->ssutable, table); 15368 dns_zone_setssutable(dns_zone_t *zone, dns_ssutable_t *table) { argument 15374 if (table != NULL) 15375 dns_ssutable_attach(table, &zone->ssutable);
|
/bind-9.11.3/contrib/sdb/pgsql/ |
H A D | pgsqldb.c | 37 * The table must contain the fields "name", "rdtype", and "rdata", and 39 * creates such a table. 47 char *table; member in struct:dbinfo 135 "lower(NAME) = lower('%s')", dbi->table, canonname); 190 dbi->table); 234 * argv[1] is the name of the table 257 dbi->table = NULL; 272 STRDUP_OR_FAIL(dbi->table, argv[1]); 306 if (dbi->table != NULL) 307 isc_mem_free(ns_g_mctx, dbi->table); [all...] |
/bind-9.11.3/contrib/sdb/sqlite/ |
H A D | sqlitedb.c | 35 * The table must contain the fields "name", "rdtype", and "rdata", and 37 * creates such a table. 45 char *table; member in struct:_dbinfo 131 dbi->table, name); 202 dbi->table); 228 if (dbi->table != NULL) 229 isc_mem_free(ns_g_mctx, dbi->table); 251 * argv[1] is the name of the table 272 dbi->table = NULL; 275 STRDUP_OR_FAIL(dbi->table, arg [all...] |
H A D | zone2sqlite.c | 36 * Generate an SQLite table from a zone. 42 char *table; member in struct:_dbinfo 123 dbi.table, 164 dbi.table = argv[4]; 200 sql = sqlite3_mprintf("DROP TABLE %Q ", dbi.table); 207 dbi.table, errmsg); 225 dbi.table); 231 dbi.table, errmsg);
|
/bind-9.11.3/bin/named/ |
H A D | zoneconf.c | 183 dns_ssutable_t *table = NULL; local 201 result = dns_ssutable_create(mctx, &table); 311 result = dns_ssutable_addrule(table, grant, 341 result = dns_ssutable_addrule(table, ISC_TRUE, 352 dns_zone_setssutable(zone, table); 355 dns_ssutable_detach(&table);
|
H A D | update.c | 873 /* The ssu table to check against. */ 874 dns_ssutable_t *table; member in struct:__anon26 892 result = dns_ssutable_checkrules2(ssuinfo->table, ssuinfo->signer, 908 ssuinfo.table = ssutable;
|