HomeSort by: relevance | last modified time | path
    Searched refs:child2 (Results 1 - 12 of 12) sorted by relevancy

  /src/tests/lib/libc/sys/
t_ptrace_clone_wait.h 36 pid_t child, child2 = 0, wpid; local
66 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base,
70 child2);
74 (wpid = TWAIT_GENERIC(child2, &status, WALLSIG), child2);
126 child2 = state.pe_other_pid;
127 DPRINTF("Reported ptrace event with forkee %d\n", child2);
130 "%d\n", TWAIT_FNAME, child2, child);
131 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child2, &status, 0),
132 child2);
324 pid_t child, child2 = 0, wpid; local
685 pid_t child, child2 = 0, wpid; local
    [all...]
t_ptrace_fork_wait.h 36 pid_t child, child2 = 0, wpid; local
66 FORKEE_ASSERT_EQ(posix_spawn(&child2,
70 FORKEE_ASSERT((child2 = fork()) != -1);
72 FORKEE_ASSERT((child2 = vfork()) != -1);
75 if (child2 == 0)
79 (wpid = TWAIT_GENERIC(child2, &status, 0), child2);
153 child2 = state.pe_other_pid;
154 DPRINTF("Reported ptrace event with forkee %d\n", child2);
157 "%d\n", TWAIT_FNAME, child2, child)
745 pid_t child, child2 = 0, wpid; local
1220 pid_t child, child2 = 0, wpid; local
1283 pid_t child, child2 = 0, wpid; local
    [all...]
t_fork.c 278 pid_t child, child2, wpid; local
297 child2 = fork();
299 child2 = vfork();
301 child2 = __clone(clone_func, stack_base, flags, NULL);
305 ASSERT_NEQ(child2, -1);
308 if (child2 == 0)
312 wpid = waitpid(child2, &status, 0);
313 ASSERT_EQ(child2, wpid);
t_ptrace_topology_wait.h 40 pid_t child1, child2, wpid; local
52 SYSCALL_REQUIRE((child2 = fork()) != -1);
53 if (child2 != 0) {
54 DPRINTF("Parent process PID=%d, child2's PID=%d\n",
55 getpid(), child2);
67 CHILD_TO_PARENT("child2 exiting", parent_child, msg);
82 DPRINTF("Wait for exiting of child2\n");
83 PARENT_FROM_CHILD("child2 exiting", parent_child, msg);
t_poll.c 67 child2(void) function
76 (void)printf("child2 exit\n");
128 child2();
  /src/tests/kernel/
t_zombie.c 130 pid_t child1, child2, pid; local
139 child2 = atf_utils_fork();
140 ATF_REQUIRE(child2 != -1);
141 if (child2 == 0) {
161 pid = waitpid(child2, &status, WEXITED);
162 ATF_REQUIRE_EQ(pid, child2);
169 /* Assert that child1 is still a zombie after collecting child2 */
  /src/external/bsd/kyua-cli/dist/utils/signals/
interrupts_test.cpp 163 std::unique_ptr< process::child > child2(process::child::fork_capture(
177 const process::status status2 = child2->wait();
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
opregion.c 134 struct efp_child_device_config child2; member in struct:vbt
198 v->child2.handle = DEVICE_TYPE_EFP3;
199 v->child2.device_type = DEVICE_TYPE_DP;
200 v->child2.dvo_port = DVO_PORT_DPC;
201 v->child2.aux_channel = DP_AUX_C;
202 v->child2.dp_compat = true;
203 v->child2.integrated_encoder = true;
  /src/external/gpl2/dtc/dist/
checks.c 272 struct node *child, *child2; local
275 for (child2 = child->next_sibling;
276 child2;
277 child2 = child2->next_sibling)
278 if (streq(child->name, child2->name))
279 FAIL(c, dti, child2, "Duplicate node name");
  /src/external/mit/isl/dist/
isl_schedule_tree.c 693 isl_schedule_tree *child1, *child2; local
696 child2 = isl_schedule_tree_get_child(tree2, i);
697 equal = isl_schedule_tree_plain_is_equal(child1, child2);
699 isl_schedule_tree_free(child2);
  /src/external/gpl3/gcc/dist/gcc/
tree-vect-slp.cc 1806 slp_tree child2 = new _slp_tree; local
1807 SLP_TREE_DEF_TYPE (child2) = vect_internal_def;
1808 SLP_TREE_VECTYPE (child2) = vectype;
1809 SLP_TREE_LANES (child2) = group_size;
1810 SLP_TREE_CHILDREN (child2).create (2);
1811 SLP_TREE_CHILDREN (child2).quick_push (op0);
1813 SLP_TREE_CHILDREN (child2).quick_push (op1);
1815 SLP_TREE_REPRESENTATIVE (child2) = oper2;
1825 SLP_TREE_CHILDREN (perm).quick_push (child2);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-slp.cc 1605 slp_tree child2 = new _slp_tree; local
1606 SLP_TREE_DEF_TYPE (child2) = vect_internal_def;
1607 SLP_TREE_VECTYPE (child2) = vectype;
1608 SLP_TREE_LANES (child2) = group_size;
1609 SLP_TREE_CHILDREN (child2).create (2);
1610 SLP_TREE_CHILDREN (child2).quick_push (op0);
1612 SLP_TREE_CHILDREN (child2).quick_push (op1);
1614 SLP_TREE_REPRESENTATIVE (child2) = oper2;
1624 SLP_TREE_CHILDREN (perm).quick_push (child2);

Completed in 33 milliseconds