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

/bind-9.6-ESV-R11/bin/named/
H A Dlistenlist.c38 ns_listenelt_t *elt = NULL; local
40 elt = isc_mem_get(mctx, sizeof(*elt));
41 if (elt == NULL)
43 elt->mctx = mctx;
44 ISC_LINK_INIT(elt, link);
45 elt->port = port;
46 elt->acl = acl;
47 *target = elt;
52 ns_listenelt_destroy(ns_listenelt_t *elt) { argument
74 ns_listenelt_t *elt, *next; local
108 ns_listenelt_t *elt = NULL; local
[all...]
H A Dconfig.c421 const cfg_listelt_t *elt; local
426 for (elt = cfg_list_first(masters);
427 elt != NULL;
428 elt = cfg_list_next(elt)) {
432 list = cfg_listelt_value(elt);
H A Dinterfacemgr.c499 listenon_is_ip6_any(ns_listenelt_t *elt) { argument
500 REQUIRE(elt && elt->acl);
501 return dns_acl_isany(elt->acl);
/bind-9.6-ESV-R11/lib/isc/
H A Dheap.c146 float_up(isc_heap_t *heap, unsigned int i, void *elt) { argument
150 i > 1 && heap->compare(elt, heap->array[p]) ;
156 heap->array[i] = elt;
164 sink_down(isc_heap_t *heap, unsigned int i, void *elt) { argument
174 if (heap->compare(elt, heap->array[j]))
181 heap->array[i] = elt;
189 isc_heap_insert(isc_heap_t *heap, void *elt) { argument
200 float_up(heap, new_last, elt);
207 void *elt; local
217 elt
[all...]
H A Dsymtab.c32 typedef struct elt { struct
36 LINK(struct elt) link;
102 elt_t *elt, *nelt; local
109 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) {
110 nelt = NEXT(elt, link);
112 (symtab->undefine_action)(elt->key,
113 elt->type,
114 elt
174 elt_t *elt; local
209 elt_t *elt, *nelt; local
235 elt_t *elt; local
285 elt_t *elt; local
[all...]
/bind-9.6-ESV-R11/lib/isccc/
H A Dalist.c161 isccc_sexpr_t *kv, *k, *elt; local
176 elt = isccc_sexpr_addtolist(&alist, kv);
177 if (elt == NULL) {
274 isccc_sexpr_t *elt, *kv, *k, *v; local
279 for (elt = isccc_alist_first(sexpr);
280 elt != NULL;
281 elt = CDR(elt)) {
282 kv = CAR(elt);
290 if (CDR(elt) !
[all...]
H A Dsymtab.c49 typedef struct elt { struct
53 ISC_LINK(struct elt) link;
105 free_elt(isccc_symtab_t *symtab, unsigned int bucket, elt_t *elt) { argument
106 ISC_LIST_UNLINK(symtab->table[bucket], elt, link);
108 (symtab->undefine_action)(elt->key, elt->type, elt->value,
110 free(elt);
117 elt_t *elt, *nelt; local
124 for (elt
199 elt_t *elt; local
220 elt_t *elt; local
259 elt_t *elt; local
279 elt_t *elt, *nelt; local
[all...]
H A Dsexpr.c256 isccc_sexpr_t *last, *elt, *l1; local
262 elt = isccc_sexpr_cons(l2, NULL);
263 if (elt == NULL)
266 *l1p = elt;
267 return (elt);
271 CDR(last) = elt;
273 return (elt);
H A Dcc.c88 value_towire(isccc_sexpr_t *elt, isccc_region_t *target) argument
95 if (isccc_sexpr_binaryp(elt)) {
96 vr = isccc_sexpr_tobinary(elt);
105 } else if (isccc_alist_alistp(elt)) {
117 result = table_towire(elt, target);
129 } else if (isccc_sexpr_listp(elt)) {
141 result = list_towire(elt, target);
160 isccc_sexpr_t *kv, *elt, *k, *v; local
165 for (elt = isccc_alist_first(alist);
166 elt !
[all...]
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssectool.c221 entropysource_t *elt; local
246 elt = isc_mem_get(mctx, sizeof(*elt));
247 if (elt == NULL)
249 elt->source = source;
250 elt->mctx = mctx;
251 ISC_LINK_INIT(elt, link);
252 ISC_LIST_APPEND(sources, elt, link);
/bind-9.6-ESV-R11/lib/isccfg/
H A Daclconf.c61 const cfg_listelt_t *elt; local
66 for (elt = cfg_list_first(acls);
67 elt != NULL;
68 elt = cfg_list_next(elt)) {
69 const cfg_obj_t *acl = cfg_listelt_value(elt);
174 const cfg_listelt_t *elt; local
182 for (elt = cfg_list_first(caml);
183 elt != NULL;
184 elt
231 const cfg_listelt_t *elt; local
[all...]
H A Dparser.c438 cfg_listelt_t *elt = NULL; local
449 CHECK(create_listelt(pctx, &elt));
450 elt->obj = stringobj;
451 ISC_LIST_APPEND(pctx->open_files->value.list, elt, link);
920 cfg_listelt_t *elt; local
921 elt = isc_mem_get(pctx->mctx, sizeof(*elt));
922 if (elt == NULL)
924 elt->obj = NULL;
925 ISC_LINK_INIT(elt, lin
931 free_list_elt(cfg_parser_t *pctx, cfg_listelt_t *elt) argument
938 cfg_listelt_t *elt, *next; local
953 cfg_listelt_t *elt = NULL; local
982 cfg_listelt_t *elt = NULL; local
1009 const cfg_listelt_t *elt; local
1062 cfg_listelt_t *elt = NULL; local
1082 const cfg_listelt_t *elt; local
1108 cfg_list_next(const cfg_listelt_t *elt) argument
1119 const cfg_listelt_t *elt; local
1137 cfg_listelt_value(const cfg_listelt_t *elt) argument
1175 cfg_listelt_t *elt; local
1427 cfg_listelt_t *elt; local
1634 cfg_listelt_t *elt = NULL; local
2118 cfg_listelt_t *elt; local
2209 cfg_listelt_t *elt; local
2223 cfg_listelt_t *elt; local
[all...]
/bind-9.6-ESV-R11/bin/rndc/
H A Drndc.c450 const cfg_listelt_t *elt; local
498 for (elt = cfg_list_first(servers);
499 elt != NULL;
500 elt = cfg_list_next(elt))
503 server = cfg_listelt_value(elt);
534 for (elt = cfg_list_first(keys);
535 elt != NULL;
536 elt = cfg_list_next(elt))
[all...]
/bind-9.6-ESV-R11/bin/nsupdate/
H A Dnsupdate.c232 entropysource_t *elt; local
257 elt = isc_mem_get(mctx, sizeof(*elt));
258 if (elt == NULL)
260 elt->source = source;
261 elt->mctx = mctx;
262 ISC_LINK_INIT(elt, link);
263 ISC_LIST_APPEND(sources, elt, link);
/bind-9.6-ESV-R11/lib/bind9/
H A Dcheck.c814 const cfg_listelt_t *elt; local
819 for (elt = cfg_list_first(masters);
820 elt != NULL;
821 elt = cfg_list_next(elt)) {
825 list = cfg_listelt_value(elt);
2365 const cfg_listelt_t *elt; local
2369 for (elt = cfg_list_first(acls);
2370 elt != NULL;
2371 elt
2415 const cfg_listelt_t *elt; local
[all...]

Completed in 53 milliseconds