HomeSort by relevance Sort by last modified time
    Searched refs:waitpid (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/bison/lib/
waitpid.c 27 waitpid (pid_t pid, int *statusp, int options) function
sys_wait.in.h 46 as returned by waitpid().
89 as returned by waitpid() or, equivalently, _cwait() or GetExitCodeProcess().
115 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
117 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
118 _GL_CXXALIASWARN (waitpid); variable
120 # undef waitpid
122 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
  /external/fio/os/windows/posix/include/sys/
wait.h 10 pid_t waitpid(pid_t, int *stat_loc, int options);
  /external/compiler-rt/test/lsan/TestCases/
fork.cc 19 waitpid(pid, &status, 0);
fork_threaded.cc 33 waitpid(pid, &status, 0);
  /external/compiler-rt/test/tsan/
fork_atexit.cc 27 if (waitpid(pid, 0, 0) == -1) {
28 perror("waitpid");
  /bionic/libc/bionic/
wait.cpp 38 pid_t waitpid(pid_t pid, int* status, int options) { function
  /external/chromium_org/base/process/
kill_posix.cc 33 // waitpid() has no direct support on POSIX for specifying a timeout, you can
39 // Our strategy is to call waitpid() once up front to check if the process
42 // waitpid(). The amount of time we sleep starts out at 1 milliseconds, and
53 return HANDLE_EINTR(waitpid(handle, status, 0)) > 0;
56 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG));
76 ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG));
91 const pid_t result = HANDLE_EINTR(waitpid(handle, &status,
94 DPLOG(ERROR) << "waitpid(" << handle << ")";
155 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG));
211 if (HANDLE_EINTR(waitpid(handle, &status, 0)) == -1)
    [all...]
kill_mac.cc 25 const pid_t result = HANDLE_EINTR(waitpid(child, NULL, 0));
27 DPLOG(ERROR) << "waitpid(" << child << ", NULL, 0)";
37 // time. Once the kqueue indicates the process has exited, waitpid will reap
48 // zombie that a non-blocking (WNOHANG) waitpid can reap. This condition is
50 // non-blocking waitpid fails to reap the process but indicates that it is
66 // work in that case, but waitpid won't, and killing a non-child might not be
99 result = HANDLE_EINTR(waitpid(child, NULL, WNOHANG));
102 // A positive result indicates case 1. waitpid succeeded and reaped
  /bionic/libc/include/sys/
wait.h 49 extern pid_t waitpid(pid_t, int *, int);
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 69 pid = waitpid(pid, (int *)&pstat, 0);
  /development/ndk/platforms/android-19/include/sys/
wait.h 49 extern pid_t waitpid(pid_t, int *, int);
  /development/ndk/platforms/android-3/include/sys/
wait.h 51 extern pid_t waitpid(pid_t, int *, int);
  /development/ndk/platforms/android-L/include/sys/
wait.h 49 extern pid_t waitpid(pid_t, int *, int);
  /external/chromium_org/third_party/mesa/src/scons/
fixes.py 21 pid, status = os.waitpid(ret, 0)
  /external/compiler-rt/test/asan/TestCases/Linux/
clone_test.cc 30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE);
32 perror("waitpid");
  /external/compiler-rt/test/asan/TestCases/Posix/
wait.cc 31 #elif defined(WAITPID)
32 res = waitpid(pid, status, WNOHANG);
  /external/mesa3d/scons/
fixes.py 21 pid, status = os.waitpid(ret, 0)
  /bootable/recovery/
adb_install.cpp 101 if (waitpid(child, &status, WNOHANG) != 0) {
131 waitpid(child, &status, 0);
  /external/bison/darwin-lib/sys/
wait.h 348 as returned by waitpid().
391 as returned by waitpid() or, equivalently, _cwait() or GetExitCodeProcess().
417 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
419 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
420 _GL_CXXALIASWARN (waitpid); variable
422 # undef waitpid macro
424 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
  /external/bison/linux-lib/sys/
wait.h 348 as returned by waitpid().
391 as returned by waitpid() or, equivalently, _cwait() or GetExitCodeProcess().
417 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
419 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options));
420 _GL_CXXALIASWARN (waitpid); variable
422 # undef waitpid macro
424 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
  /development/ndk/sources/android/libportable/arch-mips/
waitpid.c 60 pid_t WRAP(waitpid)(pid_t pid, int *status, int options) function
67 rv = REAL(waitpid)(pid, status, options);
  /development/ndk/platforms/android-9/include/sys/
wait.h 52 extern pid_t waitpid(pid_t, int *, int);
  /external/chromium_org/build/android/pylib/utils/
xvfb.py 43 _, retcode = os.waitpid(proc.pid, 0)
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
test_relocated_shared_relro.cpp 90 waitpid(child, &status, 0);

Completed in 533 milliseconds

1 2 3 4 5 6