| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| dbtable.c | 24 #include <dns/rbt.h> 36 dns_rbt_t *rbt; member in struct:dns_dbtable 63 dbtable->rbt = NULL; 64 result = dns_rbt_create(mctx, dbdetach, NULL, &dbtable->rbt); 99 dns_rbt_destroy(&dbtable->rbt); 146 result = dns_rbt_addname(dbtable->rbt, dns_db_origin(dbclone), dbclone); 164 * be verified. With the current rbt.c this is expensive to do, 172 result = dns_rbt_findname(dbtable->rbt, name, 0, NULL, 178 (void)dns_rbt_deletename(dbtable->rbt, name, false); 236 result = dns_rbt_findname(dbtable->rbt, name, rbtoptions, NULL [all...] |
| rbt.c | 1 /* $NetBSD: rbt.c,v 1.1 2024/02/18 20:57:33 christos Exp $ */ 46 #include <dns/rbt.h> 58 #define VALID_RBT(rbt) ISC_MAGIC_VALID(rbt, RBT_MAGIC) 106 * This is the header for map-format RBT images. It is populated, 109 * that the header is only valid when the RBT image is also valid. 131 unsigned int nodecount; /* shadow from rbt structure */ 137 * The following declarations are for the serialization of an RBT: 149 * RBT objects it contains. 159 write_header(FILE *file, dns_rbt_t *rbt, uint64_t first_node_offset 925 dns_rbt_t *rbt = NULL; local 1021 dns_rbt_t *rbt; local 1063 dns_rbt_t *rbt; local [all...] |
| zone.c | 1018 static const char *dbargv_default[] = { "rbt" }; 1899 if (strcmp(zone->db_argv[0], "rbt") != 0 && 2088 bool rbt, hasraw, is_dynamic; local 2145 rbt = strcmp(zone->db_argv[0], "rbt") == 0 || 2148 if (zone->db != NULL && zone->masterfile == NULL && rbt) { 2298 rbt) 11608 CHECK(dns_db_create(zone->mctx, "rbt", &zone->origin,
|
| /src/sys/ufs/lfs/ |
| lfs_inode.c | 679 rb_tree_t *rbt = v; local 682 RB_TREE_FOREACH_SAFE(sd, rbt, tmp) { 694 rb_tree_remove_node(rbt, sd);
|
| /src/external/mpl/bind/dist/tests/dns/ |
| rbt_test.c | 50 #include <dns/rbt.h> 57 dns_rbt_t *rbt; member in struct:__anon24217 144 ctx->rbt = NULL; 145 result = dns_rbt_create(mctx, delete_data, NULL, &ctx->rbt); 165 result = dns_rbt_addnode(ctx->rbt, name, &node); 183 dns_rbt_destroy(&ctx->rbt, 0); 193 check_test_data(dns_rbt_t *rbt) { 211 result = dns_rbt_findnode(rbt, name, foundname, &node, NULL, 0, 219 /* Test the creation of an rbt */ 228 check_test_data(ctx->rbt); [all...] |
| /src/external/mpl/bind/dist/tests/bench/ |
| load-names.c | 31 #include <dns/rbt.h> 304 * rbt 309 dns_rbt_t *rbt = NULL; local 310 (void)dns_rbt_create(mem, NULL, NULL, &rbt); 311 return rbt; 315 add_rbt(void *rbt, size_t count) { 319 result = dns_rbt_addnode(rbt, &item[count].fixed.name, &node); 331 get_rbt(void *rbt, size_t count, void **pval) { 335 result = dns_rbt_findnode(rbt, &item[count].fixed.name, NULL, &node, 468 { "rbt", new_rbt, thread_rbt } [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| rbt.c | 1 /* $NetBSD: rbt.c,v 1.18 2026/01/29 18:37:49 christos Exp $ */ 44 #include <dns/rbt.h> 47 #define VALID_RBT(rbt) ISC_MAGIC_VALID(rbt, RBT_MAGIC) 180 hashtable_new(dns_rbt_t *rbt, uint8_t index, uint8_t bits); 182 hashtable_free(dns_rbt_t *rbt, uint8_t index); 185 hash_node(dns_rbt_t *rbt, dns_rbtnode_t *node, const dns_name_t *name); 188 unhash_node(dns_rbt_t *rbt, dns_rbtnode_t *node); 191 rehash_bits(dns_rbt_t *rbt, size_t newcount); 193 hashtable_rehash(dns_rbt_t *rbt, uint32_t newbits) 263 dns_rbt_t *rbt; local 291 dns_rbt_t *rbt; local [all...] |
| zone.c | 2133 bool rbt, hasraw, is_dynamic; local 2190 rbt = strcmp(zone->db_argv[0], ZONEDB_DEFAULT) == 0; 2192 if (zone->db != NULL && zone->masterfile == NULL && rbt) { 2343 rbt)
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| rpz.h | 272 dns_rbt_t *rbt; member in struct:dns_rpz_zones
|
| /src/external/cddl/osnet/dist/cmd/ztest/ |
| ztest.c | 1628 ztest_block_tag_t rbt; local 1631 sizeof (rbt), &rbt, prefetch) == 0); 1632 if (rbt.bt_magic == BT_MAGIC) { 1633 ztest_bt_verify(&rbt, os, lr->lr_foid,
|