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

/bind-9.11.3/lib/isc/
H A Dht.c22 typedef struct isc_ht_node isc_ht_node_t; typedef in typeref:struct:isc_ht_node
29 isc_ht_node_t *next;
40 isc_ht_node_t **table;
46 isc_ht_node_t *cur;
70 ht->table = isc_mem_get(ht->mctx, ht->size * sizeof(isc_ht_node_t*));
99 isc_ht_node_t *node = ht->table[i];
101 isc_ht_node_t *next = node->next;
104 offsetof(isc_ht_node_t, key) +
112 isc_mem_put(ht->mctx, ht->table, ht->size * sizeof(isc_ht_node_t*));
122 isc_ht_node_t *nod
[all...]

Completed in 10 milliseconds