/prebuilts/python/darwin-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)
|
/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");
|
/device/generic/goldfish/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) {
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
posix.cc | 113 pid_t child = waitpid(pid, &status, 0); 115 LOG_ERR(LS_ERROR) << "Error in waitpid()"; 120 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) {
|
/external/chromium/chrome/browser/cocoa/ |
authorization_util.h | 54 // waitpid() to wait for the process to exit. If waitpid() succeeds, the
|
authorization_util.mm | 171 pid_t wait_result = HANDLE_EINTR(waitpid(pid, exit_status_pointer, 0)); 173 PLOG(ERROR) << "waitpid";
|
/external/chromium_org/base/mac/ |
authorization_util.h | 58 // waitpid() to wait for the process to exit. If waitpid() succeeds, the
|
authorization_util.mm | 174 pid_t wait_result = HANDLE_EINTR(waitpid(pid, exit_status_pointer, 0)); 176 PLOG(ERROR) << "waitpid";
|
/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 | 28 // process crashed (for posix, as returned from waitpid(), for Windows, as
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
fork_threaded.cc | 33 waitpid(pid, &status, 0);
|
/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/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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. */
|
/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/compiler-rt/lib/asan/lit_tests/TestCases/ |
wait.cc | 35 #elif defined(WAITPID) 36 res = waitpid(pid, status, WNOHANG);
|