HomeSort by relevance Sort by last modified time
    Searched full:waitpid (Results 26 - 50 of 786) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py 21 # waitpid() shouldn't hang, but some of the buildbots seem to hang
23 spid, status = os.waitpid(cpid, os.WNOHANG)
fork_wait.py 39 # waitpid() shouldn't hang, but some of the buildbots seem to hang
41 spid, status = os.waitpid(cpid, os.WNOHANG)
  /system/extras/ext4_utils/
setup_fs.c 56 while ((pid=waitpid(-1, &status, 0)) != child) {
58 fprintf(stderr, "error: setup_fs: waitpid failed!\n");
  /external/chromium_org/third_party/webrtc/base/
posix.cc 96 pid_t child = waitpid(pid, &status, 0);
98 LOG_ERR(LS_ERROR) << "Error in waitpid()";
103 LOG(LS_ERROR) << "waitpid() chose wrong child???";
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessUnix.cpp 154 pid_t pid = waitpid(m_pid,&ret,0);
172 pid_t pid = waitpid(m_pid,&ret,WNOHANG);
197 if (waitpid(pid,NULL,0)<0) {
  /system/netd/server/
ClatdController.cpp 127 waitpid(pid, NULL, 0);
141 waitpid_status = waitpid(pid, NULL, WNOHANG);
143 mClatdPids.erase(interface); // child exited, don't call waitpid on it again
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
fork_wait.py 39 # waitpid() shouldn't hang, but some of the buildbots seem to hang
41 spid, status = os.waitpid(cpid, os.WNOHANG)
  /external/strace/
README-linux-ptrace 8 Ptrace API (ab)uses standard Unix parent/child signaling over waitpid.
40 about this event is delivered through waitpid API similarly to
81 that waitpid(WNOHANG) will reliably report tracee's death status if
82 ptrace operation returned ESRCH. waitpid(WNOHANG) may return 0 instead.
94 waitpid API. Tracer should use waitpid family of syscalls to wait for
97 pid = waitpid(pid_or_minus_1, &status, __WALL);
109 Setting of WCONTINUED bit in waitpid flags is not recommended: the
113 Use of WNOHANG bit in waitpid flags may cause waitpid return 0 ("n
    [all...]
  /external/bison/lib/
waitpid.c 27 waitpid (pid_t pid, int *statusp, int options) function
  /external/bison/m4/
sys_wait_h.m4 20 [waitpid])
  /external/chromium_org/content/public/browser/
browser_child_process_host_delegate.h 32 // process crashed (for posix, as returned from waitpid(), for Windows, as
  /external/compiler-rt/test/lsan/TestCases/
fork_threaded.cc 33 waitpid(pid, &status, 0);
  /external/strace/test/
leaderkill.c 54 got_pid = waitpid(child, &status, 0);
  /external/strace/tests/
net-accept-connect.c 36 assert(waitpid(pid, &status, 0) == pid);
  /external/valgrind/main/none/tests/
syscall-restart1.c 59 waitpid(pid, NULL, 0);
syscall-restart2.c 58 waitpid(pid, NULL, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
wait.h 37 bits to `waitpid', `wait3', and `wait4'. */
119 /* Special values for the PID argument to `waitpid' and `wait4'. */
139 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
174 /* PID is like waitpid. Other args are like wait3. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
wait.h 37 bits to `waitpid', `wait3', and `wait4'. */
119 /* Special values for the PID argument to `waitpid' and `wait4'. */
139 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
174 /* PID is like waitpid. Other args are like wait3. */
  /bootable/recovery/
adb_install.cpp 101 if (waitpid(child, &status, WNOHANG) != 0) {
131 waitpid(child, &status, 0);
  /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);
  /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 - "
  /external/chromium_org/base/mac/
authorization_util.h 67 // waitpid() to wait for the process to exit. If waitpid() succeeds, the
  /external/compiler-rt/test/asan/TestCases/Posix/
wait.cc 31 #elif defined(WAITPID)
32 res = waitpid(pid, status, WNOHANG);
  /external/valgrind/main/memcheck/tests/
addressable.c 134 while((ret = waitpid(pid, &status, 0)) != pid) {
136 perror("waitpid");

Completed in 2206 milliseconds

12 3 4 5 6 7 8 91011>>