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

/bind-9.6-ESV-R11/contrib/zkt/
H A Dzkt.c219 const dki_t *parent; variable
234 if ( parent == NULL || !issubdomain (dkp->name, parent->name) )
236 parent = dkp;
H A Ddomaincmp.c55 ** A subdomain is less than the corresponding parent domain,
67 ** A subdomain is less than the corresponding parent domain,
140 ** int issubdomain ("child", "parent")
142 ** "child" and "parent" are standardized domain names in such
146 ** returns 1 if "child" is a subdomain of "parent"
147 ** returns 0 if "child" is not a subdomain of "parent"
150 int issubdomain (const char *child, const char *parent) argument
158 if ( !child || !parent || *child == '\0' || *parent == '\0' )
163 for ( p = parent; *
207 isparentdomain(const char *child, const char *parent, int level) argument
[all...]
H A Drollover.c117 ** Check if the parent directory of the zone specified by zp
130 if ( fileexist (path) ) /* parent dir has local config file ? */
144 * used in the parent dir (see above)
154 const zone_t *parent; local
157 /* find out name of parent */
159 if ( parentname == NULL ) /* no parent found! */
163 /* try to find parent zone in zonelist */
164 if ( (parent = zone_search (zonelist, parentname)) == NULL )
166 snprintf (path, sizeof (path), "%s/%s", parent->dir, parent
[all...]
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Drbt.h77 dns_rbtnode_t *parent; member in struct:dns_rbtnode
146 * node from the root of the tree. Originally nodes did not have parent
148 * the path back to the root from any given node. Now that nodes have parent
152 * In any event, parent information, whether via parent pointers or chains, is
H A Dvalidator.h136 dns_validator_t * parent; member in struct:dns_validator
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dradix.h96 struct isc_radix_node *parent; /* may be used */ member in struct:isc_radix_node
/bind-9.6-ESV-R11/lib/isc/
H A Dradix.c305 isc_radix_node_t *node, *new_node, *parent, *glue = NULL; local
337 node->parent = NULL;
418 parent = node->parent;
419 while (parent != NULL && parent->bit >= differ_bit) {
420 node = parent;
421 parent = node->parent;
518 new_node->parent
615 isc_radix_node_t *parent, *child; local
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dtp_main.c407 atf_fs_path_t parent; local
409 err = atf_fs_path_branch_path(srcdir, &parent);
414 *srcdir = parent;
/bind-9.6-ESV-R11/lib/dns/
H A Dmaster.c147 dns_incctx_t *parent; member in struct:dns_incctx
425 dns_incctx_t *parent; local
428 parent = ictx->parent;
429 ictx->parent = NULL;
433 if (parent != NULL) {
434 ictx = parent;
498 ictx->parent = NULL;
1056 if (ictx->parent != NULL) {
1058 lctx->inc = ictx->parent;
[all...]
H A Drbt.c48 * XXXDCL Since parent pointers were added in again, I could remove all of the
79 #define PARENT(node) ((node)->parent)
133 * being wholly handled by parent pointers (which didn't exist, because
372 dns_rbtnode_t **root, *parent, *child, *current, *new_current; local
416 parent = NULL;
442 parent = current;
446 parent = current;
484 parent = NULL;
549 if (parent != NULL) {
550 if (LEFT(parent)
1277 dns_rbtnode_t *parent; local
1665 dns_rbtnode_t *child, *root, *parent, *grandparent; local
1770 dns_rbtnode_t *child, *sibling, *parent; local
2064 dns_rbtnode_t *parent; local
2142 dns_rbt_printtree(dns_rbtnode_t *root, dns_rbtnode_t *parent, int depth) argument
[all...]
H A Dvalidator.c518 eresult == DNS_R_SERVFAIL) /* RFC 1034 parent? */
1023 "covering nsec: for parent");
1034 * XXXMPA We could look for a parent NSEC
1047 * a parent NSEC with the same name. This requires
1096 dns_validator_t *parent; local
1098 for (parent = val; parent != NULL; parent = parent->parent) {
[all...]
H A Drbtdb.c1726 * this node may recursively make its parent the only node in
1727 * the parent level; if so, and if no one is currently using
1728 * the parent node, this is almost the only opportunity to
1730 * since the child and parent may be in different lock buckets,
1740 if (!pruning && node->parent != NULL &&
1741 node->parent->down == node && node->left == NULL &&
1847 dns_rbtnode_t *parent; local
1858 parent = node->parent;
1862 if (parent !
[all...]
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dsocket.c2025 "internal_accept parent %p", sock);
2335 // such an error. Additionally, the "parent" socket must be locked.
2340 restart_accept(isc_socket_t *parent, IoCompletionInfo *lpo) argument
2351 new_fd = socket(parent->pf, SOCK_STREAM, IPPROTO_TCP);
2353 return (ISC_R_FAILURE); // parent will ask windows for error message
2360 ISCAcceptEx(parent->fd,

Completed in 53 milliseconds