Searched defs:child (Results 1 - 11 of 11) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
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));
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...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
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 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...]
/bind-9.6-ESV-R11/contrib/zkt/
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/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-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/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...]
/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/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 988 milliseconds