Searched defs:next (Results 1 - 25 of 64) sorted by relevance

123

/bind-9.11.3/lib/dns/rdata/generic/
H A Dtalink_58.h18 dns_name_t next; member in struct:dns_rdata_talink
H A Dnsec_47.h20 dns_name_t next; member in struct:dns_rdata_nsec
H A Dnxt_30.h20 dns_name_t next; member in struct:dns_rdata_nxt
H A Dnsec3_50.h30 unsigned char *next; member in struct:dns_rdata_nsec3
H A Dtalink_58.c48 dns_name_t next; local
56 dns_name_init(&next, NULL);
64 dns_name_fromregion(&next, &dregion);
65 isc_region_consume(&dregion, name_length(&next));
72 sub = name_prefix(&next, tctx->origin, &prefix);
79 dns_name_t next; local
89 dns_name_init(&next, NULL);
92 return(dns_name_fromwire(&next, source, dctx, options, target));
99 dns_name_t next; local
109 dns_name_init(&next, roffset
[all...]
/bind-9.11.3/bin/tests/system/checkds/
H A Ddig.bat8 if "%arg:~0,1%" == "+" goto next
9 if "%arg%" == "-t" goto next
17 goto next
21 goto next
25 goto next
29 goto next
31 :next label
/bind-9.11.3/lib/dns/include/dns/
H A Drdatasetiter.h70 isc_result_t (*next)(dns_rdatasetiter_t *iterator); member in struct:dns_rdatasetitermethods
131 * Move the rdataset cursor to the next rdataset at the node (if any).
H A Ddbiterator.h72 isc_result_t (*next)(dns_dbiterator_t *iterator); member in struct:dns_dbiteratormethods
185 * Move the node cursor to the next node in the database (if any).
H A Dpeer.h84 ISC_LINK(dns_peer_t) next; member in struct:dns_peer
H A Dcompress.h52 dns_compressnode_t *next; member in struct:dns_compressnode
H A Drdataset.h61 isc_result_t (*next)(dns_rdataset_t *rdataset); member in struct:dns_rdatasetmethods
323 * Move the rdata cursor to the next rdata in the rdataset (if any).
684 * signature has expired or will expire in the next 120 seconds, limit
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dsetenv.c62 myenv_t *next; member in struct:myenv
83 for (mye = myenvs; mye != NULL; mye = mye->next) {
85 if (mye->next != NULL)
86 mye->next->prev = mye->prev;
88 mye->prev->next = mye->next;
89 if (mye->next == NULL && mye->prev == NULL)
125 mye->next = myenvs;
/bind-9.11.3/bin/named/
H A Dlistenlist.c66 ns_listenelt_t *elt, *next; local
69 elt = next)
71 next = ISC_LIST_NEXT(elt, link);
/bind-9.11.3/lib/isc/win32/
H A Dcondition.c165 isc_condition_thread_t *next, *threadcond; local
178 next = ISC_LIST_NEXT(threadcond, link);
182 threadcond = next;
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/
H A Daliaslist.c63 struct aliasitem *next; member in struct:aliasitem
107 aliasitem_t next; local
121 next = current->next;
123 current = next;
199 new_item->next = list->first_item;
232 if (cur_item->next == NULL) {
235 cur_item = cur_item->next;
237 cur_item->next = new_item;
266 current = current->next;
[all...]
H A Dstrhash.c71 struct strhash_entry *next; member in struct:strhash_entry
126 strhash_entry_t *next; local
129 next = bin->next;
133 bin = next;
159 entry->next = hash->bins[h_index];
221 entry = entry->next;
237 entry->next = NULL;
267 entries = entries->next;
271 e->next
[all...]
H A Ducsmap.c94 struct ucsmap_buf *next; member in struct:ucsmap_buf
345 buf->next = ctx->mapdata;
359 ucsmap_buf_t *next = buf->next; local
361 buf = next;
/bind-9.11.3/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dhook.c65 HOOKPTR next; member in struct:_HOOK
76 if (hookList.prev == NULL || hookList.next == NULL) {
78 hookList.next = &hookList;
86 for (hp = hookList.next ; hp != &hookList ; hp = hp->next) {
96 HOOKPTR hp, prev, next; local
110 next = prev->next;
111 prev->next = hp;
112 next
122 HOOKPTR prev, next; local
[all...]
/bind-9.11.3/lib/dns/
H A Dncache.c128 unsigned int next = 0; local
208 if (next >= DNS_NCACHE_RDATA)
210 dns_rdata_init(&rdata[next]);
212 rdata[next].data = r.base;
213 rdata[next].length = r.length;
214 rdata[next].rdclass =
216 rdata[next].type = 0;
217 rdata[next].flags = 0;
219 &rdata[next], link);
221 next
[all...]
H A Dbadcache.c47 dns_bcentry_t * next; member in struct:dns_bcentry
117 dns_bcentry_t **newtable, *bad, *next; local
131 for (bad = bc->table[i]; bad != NULL; bad = next) {
132 next = bad->next;
138 bad->next = newtable[bad->hashval % newsize];
159 dns_bcentry_t *bad, *prev, *next; local
175 for (bad = bc->table[i]; bad != NULL; bad = next) {
176 next = bad->next;
227 dns_bcentry_t *bad, *prev, *next; local
297 dns_bcentry_t *entry, *next; local
315 dns_bcentry_t *bad, *prev, *next; local
352 dns_bcentry_t *bad, *prev, *next; local
394 dns_bcentry_t *bad, *next, *prev; local
[all...]
H A Dkeytable.c49 struct dns_keynode * next; member in struct:dns_keynode
187 for (k = node->data; k != NULL; k = k->next) {
205 knode->next = node->data;
291 if (knode->next == NULL && knode->key != NULL &&
303 kprev = &knode->next;
304 knode = knode->next;
312 * dns_keynode_attach(knode->next, &tmp);
317 *kprev = knode->next;
318 knode->next = NULL;
359 * Return the next ke
756 dns_keynode_t *next = NULL, *node = *keynode; local
[all...]
/bind-9.11.3/lib/isc/
H A Dht.c29 isc_ht_node_t *next; member in struct:isc_ht_node
101 isc_ht_node_t *next = node->next; local
106 node = next;
135 node = node->next;
144 node->next = ht->table[hash & ht->mask];
171 node = node->next;
192 ht->table[hash & ht->mask] = node->next;
194 prev->next = node->next;
[all...]
H A Dradix.c356 int next = ++radix->num_added_node; local
360 node->node_num[i] = next;
362 node->node_num[ISC_RADIX_OFF(prefix)] = next;
440 int next = radix->num_added_node + 1; local
444 next;
446 next;
479 int next = ++radix->num_added_node; local
483 node->node_num[i] = next;
485 node->node_num[ISC_RADIX_OFF(prefix)] = next;
532 int next local
[all...]
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dlist.c96 struct list_entry *next)
103 le->m_next = next;
106 next->m_prev = le;
353 struct list_entry *le, *next, *prev; local
356 next = (struct list_entry *)l->m_end;
357 prev = next->m_prev;
358 le = new_entry_and_link(data, managed, prev, next);
95 new_entry_and_link(void *object, bool managed, struct list_entry *prev, struct list_entry *next) argument
/bind-9.11.3/contrib/queryperf/missing/
H A Dgetaddrinfo.c174 struct addrinfo *next; local
177 next = ai->ai_next;
182 } while ((ai = next) != NULL);

Completed in 35 milliseconds

123