Searched refs:child (Results 1 - 21 of 21) sorted by relevance

/bind-9.6-ESV-R11/contrib/zkt/
H A Ddomaincmp.h41 extern int isparentdomain (const char *child, const char *parent, int level);
42 extern int issubdomain (const char *child, const char *parent);
H A Ddomaincmp.c140 ** 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' )
172 for ( p = child; *p; p++ )
179 if ( ccnt == 0 ) /* child is not a fqdn or is not deep enough ? */
184 if ( pcnt >= ccnt ) /* parent has more levels than child
207 isparentdomain(const char *child, const char *parent, int level) argument
[all...]
/bind-9.6-ESV-R11/bin/tests/system/stub/
H A Dclean.sh23 rm -f dig.out.ns3 ns3/child.example.st
H A Dtests.sh27 [ -f ns3/child.example.st ] && break
30 [ -f ns3/child.example.st ] || { status=1; echo "I:failed"; }
37 $DIG +tcp child.example. @10.53.0.3 axfr -p 5300 > dig.out.ns3 || ret=1
45 $DIG +tcp +norec data.child.example. \
56 $DIG +tcp data.child.example. @10.53.0.3 txt -p 5300 > dig.out.ns3 || ret=1
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dprocess.hpp51 class child;
117 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
129 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
141 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
153 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
165 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
181 friend class child;
200 // The "child" type.
203 class child { class in namespace:atf::process
208 child for
[all...]
H A Dprocess.cpp284 // The "child" type.
287 impl::child::child(atf_process_child_t& c) : function in class:impl::child
293 impl::child::~child(void)
306 impl::child::wait(void)
319 impl::child::pid(void)
326 impl::child::stdout_fd(void)
332 impl::child::stderr_fd(void)
345 // is flushed before executing a child whic
[all...]
H A Dtest_helpers.hpp115 atf::process::child c = atf::process::fork(
/bind-9.6-ESV-R11/lib/dns/
H A Drbt.c372 dns_rbtnode_t **root, *parent, *child, *current, *new_current; local
418 child = *root;
426 current = child;
443 child = LEFT(current);
447 child = RIGHT(current);
485 child = DOWN(current);
627 } while (child != NULL);
1593 dns_rbtnode_t *child; local
1598 child = RIGHT(node);
1599 INSIST(child !
1626 dns_rbtnode_t *child; local
1665 dns_rbtnode_t *child, *root, *parent, *grandparent; local
1770 dns_rbtnode_t *child, *sibling, *parent; local
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dtest_helpers.c131 atf_process_child_t child; local
141 RE(atf_process_fork(&child, run_h_tc_child, &outb, &errb, &data));
145 RE(atf_process_child_wait(&child, &status));
H A Dprocess_test.c63 * issues stream-specific hooks before fork, while the child is running and
64 * after the child terminates. We then provide test cases that just call
418 atf_process_child_t child; local
425 RE(atf_process_fork(&child, child_print, outfs->m_sb_ptr,
428 outfs->process(out, &child);
430 errfs->process(err, &child);
431 RE(atf_process_child_wait(&child, &status));
685 * Test cases for the "child" type.
705 "stored in the child type");
710 atf_process_child_t child; local
749 atf_process_child_t child; local
821 atf_process_child_t child; local
1014 atf_process_child_t child; local
1027 atf_process_child_t child; local
[all...]
H A Dsanity_test.c95 atf_process_child_t child; local
106 RE(atf_process_fork(&child, do_test_child, &outsb, &errsb, &td));
113 atf_utils_readline(atf_process_child_stderr(&child))) != NULL)
117 RE(atf_process_child_wait(&child, &status));
/bind-9.6-ESV-R11/bin/tests/system/dlv/ns3/
H A Dsign.sh32 infile=child.db.in
47 infile=child.db.in
62 infile=child.db.in
77 infile=child.db.in
92 infile=child.db.in
106 infile=child.db.in
120 infile=child.db.in
134 infile=child.db.in
148 infile=child.db.in
164 infile=child
[all...]
/bind-9.6-ESV-R11/bin/tests/system/dlv/ns6/
H A Dsign.sh27 infile=child.db.in
41 infile=child.db.in
56 infile=child.db.in
71 infile=child.db.in
86 infile=child.db.in
101 infile=child.db.in
116 infile=child.db.in
130 infile=child.db.in
144 infile=child.db.in
158 infile=child
[all...]
/bind-9.6-ESV-R11/bin/tests/system/
H A Dstart.pl226 my $child = `$command`;
227 $child =~ s/\s+$//g;
235 print "I:Couldn't start server $server (pid=$child)\n";
237 system "kill -9 $child" if ("$child" ne "");
/bind-9.6-ESV-R11/lib/isc/
H A Dradix.c615 isc_radix_node_t *parent, *child; local
647 child = parent->l;
651 child = parent->r;
661 radix->head = child;
663 parent->parent->r = child;
666 parent->parent->l = child;
668 child->parent = parent->parent;
675 child = node->r;
678 child = node->l;
681 child
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest-program.cpp654 atf::process::child child = local
660 impl::pistream outin(child.stdout_fd());
665 const atf::process::status status = child.wait();
742 atf::process::child child = local
754 const pid_t child_pid = child.pid();
757 impl::file_handle outfh = child.stdout_fd();
758 impl::file_handle errfh = child.stderr_fd();
777 atf::process::status status = child
[all...]
H A Dsignals_test.cpp251 atf::process::child c =
H A Dintegration_test.sh1066 "that forks, exits, but the child process hangs"
1076 test -f child-finished && atf_fail "Subprocess exited but it should have" \
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dcheck.c176 atf_process_child_t child; local
184 err = atf_process_fork(&child, exec_child, &outsb, &errsb, &ea);
188 err = atf_process_child_wait(&child, status);
/bind-9.6-ESV-R11/bin/tests/system/resolver/
H A Dtests.sh138 $DIG +tcp TXT foo.child.server @10.53.0.7 -p 5300 > dig.ns7.foo.${n} || ret=1
143 update delete ns.child.server A
144 update add ns.child.server 300 A 10.53.0.4
148 $DIG +tcp TXT bar.child.server @10.53.0.7 -p 5300 > dig.ns7.bar.${n} || ret=1
/bind-9.6-ESV-R11/bin/named/
H A Dupdate.c1484 dns_name_t *child; local
1488 child = dns_fixedname_name(&fixedname);
1497 CHECK(dns_dbiterator_current(dbit, &node, child));
1499 if (! dns_name_issubdomain(child, name))
1501 CHECK(namelist_append_name(affected, child));

Completed in 2347 milliseconds