HomeSort by relevance Sort by last modified time
    Searched refs:child_pid (Results 1 - 13 of 13) sorted by null

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 252 void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; }
472 const pid_t child_pid = fork(); local
473 GTEST_DEATH_TEST_CHECK(child_pid != -1);
474 set_child_pid(child_pid);
475 if (child_pid == 0) {
582 const pid_t child_pid = clone(&ExecDeathTestChildMain, stack_top, local
584 GTEST_DEATH_TEST_CHECK(child_pid != -1);
586 return child_pid;
632 const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]) local
    [all...]
  /external/bluetooth/glib/glib/
gspawn.h 92 GPid *child_pid,
105 GPid *child_pid,
  /external/bluetooth/glib/tests/
mapping-test.c 175 GPid child_pid; local
189 0, NULL, NULL, &child_pid, &error))
206 kill (child_pid, SIGUSR1);
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 74 pid_t child_pid; local
88 switch ((child_pid = fork ()))
128 child_pid,
132 kill (child_pid, SIGTERM);
146 kill (child_pid, SIGTERM);
150 if (!_dbus_string_append_int (&pid, child_pid) ||
155 kill (child_pid, SIGTERM);
166 kill (child_pid, SIGTERM);
  /external/gtest/src/
gtest-death-test.cc 648 void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; }
899 const pid_t child_pid = fork(); local
1042 pid_t child_pid; local
1116 const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]); local
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 700 void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; }
758 const pid_t child_pid = fork(); local
759 GTEST_DEATH_TEST_CHECK_(child_pid != -1);
760 set_child_pid(child_pid);
761 if (child_pid == 0) {
902 pid_t child_pid = -1; local
976 const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]); local
    [all...]
  /external/bluetooth/bluez/plugins/
hciops.c 56 pid_t child_pid; local
58 if (read(fd, &child_pid, sizeof(child_pid)) != sizeof(child_pid)) {
63 if (waitpid(child_pid, &status, 0) != child_pid)
64 error("waitpid(%d) failed", child_pid);
66 DBG("child %d exited", child_pid);
  /external/bluetooth/glib/gio/
gunixmount.c 325 GPid child_pid; local
334 &child_pid,
351 g_child_watch_add (child_pid, eject_unmount_cb, data);
gunixvolume.c 377 GPid child_pid; local
393 &child_pid,
410 g_child_watch_add (child_pid, eject_mount_cb, data);
  /external/gtest/test/
gtest-death-test_test.cc 217 pid_t child_pid = fork(); local
218 if (child_pid == 0) {
222 waitpid(child_pid, &status, 0);
232 pid_t child_pid = fork(); local
233 if (child_pid == 0) {
238 waitpid(child_pid, &status, 0);
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 218 pid_t child_pid = fork(); local
219 if (child_pid == 0) {
223 waitpid(child_pid, &status, 0);
233 pid_t child_pid = fork(); local
234 if (child_pid == 0) {
239 waitpid(child_pid, &status, 0);
    [all...]
  /external/dbus/tools/
dbus-launch.c 487 pid_t child_pid,
494 verbose ("babysitting, exit_with_session = %d, child_pid = %ld, read_bus_pid_fd = %d\n",
495 exit_with_session, (long) child_pid, read_bus_pid_fd);
549 if (do_waitpid (child_pid) < 0)
  /external/ipsec-tools/src/racoon/
privsep.c 168 pid_t child_pid; local
192 switch (child_pid = fork()) {

Completed in 3324 milliseconds