Searched refs:head (Results 1 - 24 of 24) sorted by relevance

/bind-9.6-ESV-R11/lib/lwres/include/lwres/
H A Dlist.h25 #define LWRES_LIST(type) struct { type *head, *tail; }
27 do { (list).head = NULL; (list).tail = NULL; } while (0)
38 #define LWRES_LIST_HEAD(list) ((list).head)
40 #define LWRES_LIST_EMPTY(list) LWRES_TF((list).head == NULL)
44 if ((list).head != NULL) \
45 (list).head->link.prev = (elt); \
49 (elt)->link.next = (list).head; \
50 (list).head = (elt); \
58 (list).head = (elt); \
73 (list).head
[all...]
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dlist.h31 #define ISC_LIST(type) struct { type *head, *tail; }
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
45 #define ISC_LIST_HEAD(list) ((list).head)
47 #define ISC_LIST_EMPTY(list) ISC_TF((list).head == NULL)
51 if ((list).head != NULL) \
52 (list).head->link.prev = (elt); \
56 (elt)->link.next = (list).head; \
57 (list).head = (elt); \
74 (list).head = (elt); \
100 ISC_INSIST((list).head
[all...]
H A Dradix.h108 isc_radix_node_t *head; member in struct:isc_radix_tree
/bind-9.6-ESV-R11/lib/lwres/
H A Dprint.c85 const char *head; local
116 head = "";
236 head = "-";
240 head = "+";
242 head = " ";
244 head = "";
283 head = "0x";
299 head = "0X";
315 zeropad - strlen(head);
320 count += strlen(head)
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dprint.c88 const char *head; local
119 head = "";
238 head = "-";
242 head = "+";
244 head = " ";
246 head = "";
333 head = "0x";
355 head = "0X";
378 zeropad - strlen(head);
383 count += strlen(head)
[all...]
H A Dradix.c151 radix->head = NULL;
170 if (radix->head != NULL) {
174 isc_radix_node_t *Xrn = radix->head;
230 RADIX_WALK(radix->head, node) {
254 if (radix->head == NULL) {
258 node = radix->head;
324 if (radix->head == NULL) {
368 radix->head = node;
375 node = radix->head;
572 INSIST(radix->head
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dmacros_test.c81 init_and_run_h_tc(const char *name, void (*head)(atf_tc_t *),
87 RE(atf_tc_init(&tc, name, head, body, NULL, config));
243 void (*head)(atf_tc_t *);
260 for (t = &tests[0]; t->head != NULL; t++) {
261 init_and_run_h_tc("h_check_errno", t->head, t->body);
287 void (*head)(atf_tc_t *);
304 for (t = &tests[0]; t->head != NULL; t++) {
305 init_and_run_h_tc("h_require_errno", t->head, t->body);
342 void (*head)(atf_tc_t *);
359 for (t = &tests[0]; t->head !
385 void (*head)(atf_tc_t *); member in struct:check_eq_test
607 void (*head)(atf_tc_t *); member in struct:require_eq_test
[all...]
H A Dtc.c549 atf_tc_init(atf_tc_t *tc, const char *ident, atf_tc_head_t head, argument
562 tc->pimpl->m_head = head;
584 /* XXX Should the head be able to return error codes? */
589 report_fatal_error("Test case head modified the read-only 'ident' "
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dtests.hpp81 virtual void head(void);
H A Dmacros.hpp57 void head(void); \
69 void head(void); \
84 atfu_tc_ ## name::head(void)
H A Dtests.cpp148 (*iter).second->head();
296 impl::tc::head(void) function in class:impl::tc
/bind-9.6-ESV-R11/lib/dns/
H A Dacl.c143 acl->iptable->radix->head == NULL ||
144 acl->iptable->radix->head->prefix == NULL)
150 if (acl->iptable->radix->head->prefix->bitlen == 0 &&
151 acl->iptable->radix->head->data[0] != NULL &&
152 acl->iptable->radix->head->data[0] ==
153 acl->iptable->radix->head->data[1] &&
154 *(isc_boolean_t *) (acl->iptable->radix->head->data[0]) == pos)
H A Diptable.c122 RADIX_WALK (source->radix->head, node) {
H A Dmaster.c735 rdatalist_head_t head; local
749 ISC_LIST_INIT(head);
860 ISC_LIST_PREPEND(head, &rdatalist, link);
862 result = commit(callbacks, lctx, &head, owner, source, line);
2056 rdatalist_head_t head, dummy; local
2110 ISC_LIST_INIT(head);
2240 rdata_size, &head,
2263 ISC_LIST_APPEND(head, &rdatalist, link);
2264 result = commit(callbacks, lctx, &head, name,
2322 ISC_LIST_APPEND(head,
2793 commit(dns_rdatacallbacks_t *callbacks, dns_loadctx_t *lctx, rdatalist_head_t *head, dns_name_t *owner, const char *source, unsigned int line) argument
2854 is_glue(rdatalist_head_t *head, dns_name_t *owner) argument
[all...]
H A Dacache.c627 dns_acacheentry_t *head; local
647 head = ISC_LIST_HEAD(acache->entries);
648 if (head != NULL)
649 dns_acache_attachentry(head, &cleaner->current_entry);
873 * this, reset next to the head entry
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_ldap_driver.c297 dbinstance_t *head; local
301 head = dbi = ISC_LIST_HEAD(*dblist);
315 dbi = head;
H A Ddlz_odbc_driver.c345 dbinstance_t *head; local
349 head = dbi = ISC_LIST_HEAD(*dblist);
363 dbi = head;
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/
H A Dconfig.guess322 UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
509 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
H A Dconfigure898 ICONVSOFILE=`ls -r $dir/lib$ic_libname.$SO* 2>/dev/null | head -1`
2952 shobj_path=`ls -r $shobj_libdir/$shobj_name.$SOEXT* 2>/dev/null | head -1`
2991 shobj_path=`ls -r $shobj_libdir/$shobj_name.$SOEXT* 2>/dev/null | head -1`
/bind-9.6-ESV-R11/
H A Dconfig.guess250 # types through head -n 1, so we only detect the type of CPU 0.
251 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
/bind-9.6-ESV-R11/bin/dig/
H A Ddig.c1725 if ((lookup_list.head == NULL) && !config_only) {
/bind-9.6-ESV-R11/unit/atf-src/admin/
H A Dconfig.guess233 # types through head -n 1, so we only detect the type of CPU 0.
234 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
/bind-9.6-ESV-R11/contrib/query-loc-0.4.0/
H A Dconfigure5795 --header | --heade | --head | --hea )
/bind-9.6-ESV-R11/contrib/zkt/
H A Dconfigure6600 --header | --heade | --head | --hea )

Completed in 117 milliseconds