/bind-9.11.3/unit/atf-src/atf-c/detail/ |
H A D | sanity_test.c | 92 atf_process_child_t child; local 103 RE(atf_process_fork(&child, do_test_child, &outsb, &errsb, &td)); 110 atf_utils_readline(atf_process_child_stderr(&child))) != NULL) 114 RE(atf_process_child_wait(&child, &status));
|
H A D | test_helpers.c | 127 atf_process_child_t child; local 137 RE(atf_process_fork(&child, run_h_tc_child, &outb, &errb, &data)); 141 RE(atf_process_child_wait(&child, &status));
|
H A D | process_test.c | 59 * issues stream-specific hooks before fork, while the child is running and 60 * after the child terminates. We then provide test cases that just call 414 atf_process_child_t child; local 421 RE(atf_process_fork(&child, child_print, outfs->m_sb_ptr, 424 outfs->process(out, &child); 426 errfs->process(err, &child); 427 RE(atf_process_child_wait(&child, &status)); 681 * Test cases for the "child" type. 701 "stored in the child type"); 706 atf_process_child_t child; local 745 atf_process_child_t child; local 817 atf_process_child_t child; local 1010 atf_process_child_t child; local 1023 atf_process_child_t child; local [all...] |
/bind-9.11.3/unit/atf-src/atf-c++/detail/ |
H A D | process.cpp | 280 // The "child" type. 283 impl::child::child(atf_process_child_t& c) : function in class:impl::child 289 impl::child::~child(void) 302 impl::child::wait(void) 315 impl::child::pid(void) 322 impl::child::stdout_fd(void) 328 impl::child::stderr_fd(void)
|
H A D | process.hpp | 46 class child; 112 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*); 124 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*); 136 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*); 148 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*); 160 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*); 176 friend class child; 195 // The "child" type. 198 class child { class in namespace:atf::process 203 child for [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | process.cpp | 412 // The "child" type. 415 impl::child::child(const pid_t pid_arg, const int stdout_fd_arg, function in class:impl::child 424 impl::child::~child(void) 438 impl::child::wait(void) 443 throw system_error(IMPL_NAME "::child::wait", "Failed waiting for " 456 impl::child::pid(void) 463 impl::child::stdout_fd(void) 469 impl::child [all...] |
H A D | process.hpp | 52 class child; 108 child fork(void (*)(void*), OutStream, ErrStream, void*); 128 child fork(void (*)(void*), OutStream, ErrStream, void*); 144 child fork(void (*)(void*), OutStream, ErrStream, void*); 162 child fork(void (*)(void*), OutStream, ErrStream, void*); 180 child fork(void (*)(void*), OutStream, ErrStream, void*); 200 friend class child; 219 // The "child" type. 222 class child { class in namespace:tools::process 231 child for [all...] |
H A D | test-program.cpp | 654 tools::process::child child = local 660 tools::io::pistream outin(child.stdout_fd()); 665 const tools::process::status status = child.wait(); 742 tools::process::child child = local 754 const pid_t child_pid = child.pid(); 757 tools::io::file_handle outfh = child.stdout_fd(); 758 tools::io::file_handle errfh = child.stderr_fd(); 777 tools::process::status status = child [all...] |
/bind-9.11.3/lib/isc/ |
H A D | radix.c | 614 isc_radix_node_t *parent, *child; local 646 child = parent->l; 650 child = parent->r; 662 radix->head = child; 664 parent->parent->r = child; 667 parent->parent->l = child; 670 child->parent = parent->parent; 677 child = node->r; 680 child = node->l; 684 child [all...] |
/bind-9.11.3/unit/atf-src/atf-c/ |
H A D | check.c | 172 atf_process_child_t child; local 180 err = atf_process_fork(&child, exec_child, &outsb, &errsb, &ea); 184 err = atf_process_child_wait(&child, status);
|
H A D | utils_test.c | 232 fprintf(stdout, "Should not get into child\n"); 233 fprintf(stderr, "Should not get into child\n"); 423 const pid_t child = atf_utils_fork(); local 424 ATF_REQUIRE(child != -1); 425 if (child == 0) { 434 atf_utils_wait(child, 50, "Child output\n", "Child error\n");
|
/bind-9.11.3/unit/atf-src/atf-c++/ |
H A D | utils_test.cpp | 223 std::cout << "Should not get into child\n"; 224 std::cerr << "Should not get into child\n"; 363 const pid_t child = atf::utils::fork(); local 364 ATF_REQUIRE(child != -1); 365 if (child == 0) { 374 atf::utils::wait(child, 50, "Child output\n", "Child error\n");
|
/bind-9.11.3/lib/dns/ |
H A D | rpz.c | 119 dns_rpz_cidr_node_t *child[2]; member in struct:dns_rpz_cidr_node 139 * and the other pair is for a wildcard child such as *.example.com. 342 dns_rpz_cidr_node_t *child; local 348 child = cnode->child[0]; 349 if (child != NULL) { 350 sum.client_ip |= child->sum.client_ip; 351 sum.ip |= child->sum.ip; 352 sum.nsip |= child->sum.nsip; 355 child 609 new_node(dns_rpz_zones_t *rpzs, const dns_rpz_cidr_key_t *ip, dns_rpz_prefix_t prefix, const dns_rpz_cidr_node_t *child) argument 1093 dns_rpz_cidr_node_t *cur, *parent, *child, *new_parent, *sibling; local 1455 dns_rpz_cidr_node_t *cur, *child, *parent; local 1951 dns_rpz_cidr_node_t *tgt, *parent, *child; local [all...] |
H A D | update.c | 737 dns_name_t *child; local 741 child = dns_fixedname_name(&fixedname); 750 CHECK(dns_dbiterator_current(dbit, &node, child)); 752 if (! dns_name_issubdomain(child, name)) 754 CHECK(namelist_append_name(affected, child));
|
H A D | rbt.c | 1141 dns_rbtnode_t **root, *parent, *child, *current, *new_current; local 1174 * right child is NULL). This cannot be determined from the 1221 child = *root; 1229 current = child; 1246 child = LEFT(current); 1250 child = RIGHT(current); 1288 child = DOWN(current); 1430 } while (ISC_LIKELY(child != NULL)); 2415 dns_rbtnode_t *child; local 2420 child 2447 dns_rbtnode_t *child; local 2485 dns_rbtnode_t *child, *root, *parent, *grandparent; local 2590 dns_rbtnode_t *child, *sibling, *parent; local [all...] |