HomeSort by relevance Sort by last modified time
    Searched refs:waitpid (Results 101 - 125 of 172) sorted by null

1 2 3 45 6 7

  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm 59 waitpid(dispatch_source_get_handle(processDiedSource), &status, 0);
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 124 public int waitpid(int pid, MutableInt status, int options) throws ErrnoException { return os.waitpid(pid, status, options); } method in class:ForwardingOs
Os.java 118 public int waitpid(int pid, MutableInt status, int options) throws ErrnoException; method in interface:Os
Posix.java 168 public native int waitpid(int pid, MutableInt status, int options) throws ErrnoException; method in class:Posix
  /external/chromium/chrome/browser/
process_singleton_linux_uitest.cc 167 EXPECT_GE(HANDLE_EINTR(waitpid(pid, 0, WUNTRACED)), 0);
  /external/netperf/
netcpu_looper.c 461 while(waitpid(-1, NULL, WNOHANG) > 0) { }
netserver.c 731 /* will call waitpid, looking for any child process, */
732 /* with the WNOHANG feature. when waitpid return a zero, */
737 /* Only call "waitpid()" if "setsid()" is not used. */
738 while(waitpid(-1, NULL, WNOHANG) > 0) { }
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 420 while (waitpid(child_pid_, &status, 0) == -1) {
422 GOOGLE_LOG(FATAL) << "waitpid: " << strerror(errno);
  /frameworks/native/cmds/dumpstate/
dumpstate.c 447 waitpid(gzip_pid, NULL, 0);
utils.c 220 pid_t p = waitpid(pid, &status, WNOHANG);
  /system/netd/
SoftapController.cpp 227 waitpid(mPid, NULL, 0);
  /external/dbus/dbus/
dbus-spawn.c 305 ret = waitpid (sitter->sitter_pid, &status, WNOHANG);
315 ret = waitpid (sitter->sitter_pid, &status, 0);
324 _dbus_warn ("Unexpected error %d in waitpid() for babysitter: %s\n",
968 ret = waitpid (grandchild_pid, &status, WNOHANG);
984 _dbus_warn ("unexpected waitpid() failure in check_babysit_events(): %s\n",
997 _dbus_warn ("waitpid() reaped pid %d that we've never heard of\n",
1084 /* do waitpid check */
    [all...]
  /external/dropbear/
scp.c 112 waitpid(do_cmd_pid, NULL, 0);
150 while (waitpid(pid, &status, 0) == -1)
152 fatal("do_local_cmd: waitpid: %s", strerror(errno));
442 if (waitpid(do_cmd_pid, &status, 0) == -1)
  /external/openssh/
auth-pam.c 152 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
156 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, 0)
219 waitpid(thread, &status, 0);
sftp.c 209 waitpid(sshpid, NULL, 0);
292 while (waitpid(pid, &status, 0) == -1)
    [all...]
serverloop.c 755 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
809 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 356 GTEST_DEATH_TEST_CHECK_SYSCALL(waitpid(child_pid_, &status_, 0));
  /external/dbus/test/
break-loader.c 119 if (waitpid (pid, &status, 0) < 0)
121 fprintf (stderr, "waitpid() failed: %s\n", strerror (errno));
  /external/iproute2/misc/
rtacct.c 408 while (children && waitpid(-1, &status, WNOHANG) > 0)
  /external/oprofile/daemon/
opd_perfmon.c 476 waitpid(c_pid, NULL, 0);
  /external/strace/
defs.h 366 int waitpid; /* pid(s) this process is waiting for */ member in struct:tcb
  /external/webkit/Source/WebCore/bindings/scripts/
IDLParser.pm 91 waitpid($pid, 0);
  /system/core/fs_mgr/
fs_mgr.c 393 waitpid(pid, &status, 0);
  /external/chromium/testing/gtest/test/
gtest-death-test_test.cc 47 # include <sys/wait.h> // For waitpid.
232 waitpid(child_pid, &status, 0);
248 waitpid(child_pid, &status, 0);
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 47 # include <sys/wait.h> // For waitpid.
232 waitpid(child_pid, &status, 0);
248 waitpid(child_pid, &status, 0);
    [all...]

Completed in 1394 milliseconds

1 2 3 45 6 7