HomeSort by relevance Sort by last modified time
    Searched full:waitpid (Results 126 - 150 of 649) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 86 int pid = Libcore.os.waitpid(0, status, 0);
97 throw new AssertionError("unexpected status from waitpid: " + status.value);
150 * the native waitpid().
  /art/runtime/native/
dalvik_system_Zygote.cc 69 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
106 PLOG(WARNING) << "Zygote SIGCHLD error in waitpid";
112 // other processes, and we want to waitpid() for those rather than
540 if (waitpid(pid, &status, WNOHANG) == pid) {
  /bootable/recovery/
adb_install.cpp 92 waitpid(child, &status, 0);
  /development/ndk/sources/android/libportable/
Android.mk 59 arch-mips/waitpid.c \
  /external/chromium_org/content/browser/zygote_host/
zygote_host_impl_linux.h 50 // really dead). This is to prevent a waiting waitpid() from blocking in
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
preprocessor.pm 85 waitpid($pid, 0);
  /external/chromium_org/third_party/sqlite/src/test/
crashtest1.c 93 waitpid(pid, &status, 0);
  /external/dropbear/
cli-authpasswd.c 101 while (waitpid(pid, &status, 0) < 0 && errno == EINTR)
  /external/linux-tools-perf/bench/
sched-pipe.c 90 retpid = waitpid(pid, &wait_stat, 0);
  /external/valgrind/main/none/tests/
thread-exits.c 123 if (waitpid(grower, &status, 0) != grower)
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericSignatureFormatErrorTest.java 38 "dalvikvm: 'waitpid failed' log msg - only occurs when @SideEffect is removed " +
  /ndk/docs/text/system/libc/
SYSV-IPC.text 71 perror("waitpid:");
  /system/core/libctest/
ctest.c 103 waitpid(pid, &status, 0);
  /system/core/logwrapper/include/logwrap/
logwrap.h 30 * created if you're not calling waitpid after calling this. This function will
  /system/netd/
PppController.cpp 114 waitpid(mPid, NULL, 0);
  /external/chromium_org/tools/android/forwarder2/
daemon.cc 81 pid_t child_pid = waitpid(-1 /* any child */, &status, WNOHANG);
83 PError("waitpid");
  /external/mtpd/
mtpd.c 94 waitpid(pppd_pid, &status, 0);
220 if (signal == SIGCHLD && waitpid(pppd_pid, &status, WNOHANG) == pppd_pid
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/libexec/gcc/mipsel-linux-android/4.6/
lto-wrapper 
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/libexec/gcc/i686-linux-android/4.6/
lto-wrapper 
  /prebuilts/misc/linux-x86/ccache/
ccache 
  /external/chromium_org/remoting/tools/
me2me_virtual_host.py 354 _pid, retcode = os.waitpid(proc.pid, 0)
371 _pid, retcode = os.waitpid(proc.pid, 0)
816 """Wrapper around os.waitpid() which waits until either a child process dies
824 (pid, status): Same as for os.waitpid(), except that |pid| is 0 if no child
828 Same as for os.waitpid().
831 pid, status = os.waitpid(pid, os.WNOHANG)
839 """Wrapper around os.waitpid()/waitpid_with_timeout(), which waits until
853 Same as for os.waitpid(), except:
863 pid_result, status = os.waitpid(pid, 0)
    [all...]
  /external/openssh/
scp.c 158 waitpid(do_cmd_pid, NULL, 0);
173 while (waitpid(do_cmd_pid, &status, WUNTRACED) == -1 &&
210 while (waitpid(pid, &status, 0) == -1)
212 fatal("do_local_cmd: waitpid: %s", strerror(errno));
335 while (waitpid(pid, &status, 0) == -1)
337 fatal("do_cmd2: waitpid: %s", strerror(errno));
531 if (waitpid(do_cmd_pid, &status, 0) == -1)
  /external/chromium_org/v8/src/
d8-posix.cc 160 // A utility class that does a non-hanging waitpid on the child process if we
161 // bail out of the System() function early. If you don't ever do a waitpid on
166 ~ZombieProtector() { if (pid_ != 0) waitpid(pid_, NULL, 0); }
365 // Modern Linux has the waitid call, which is like waitpid, but more useful
430 waitpid(pid, &child_status, 0); // We hang here if the child doesn't exit.
  /external/v8/src/
d8-posix.cc 160 // A utility class that does a non-hanging waitpid on the child process if we
161 // bail out of the System() function early. If you don't ever do a waitpid on
166 ~ZombieProtector() { if (pid_ != 0) waitpid(pid_, NULL, 0); }
359 // Modern Linux has the waitid call, which is like waitpid, but more useful
422 waitpid(pid, &child_status, 0); // We hang here if the child doesn't exit.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 494 os.waitpid(childpid, 0)
514 os.waitpid(childpid, 0)
576 os.waitpid(childpid, 0)
636 (cpid, rc) = os.waitpid(childpid, 0)
677 os.waitpid(pid, 0)

Completed in 467 milliseconds

1 2 3 4 56 7 8 91011>>