HomeSort by relevance Sort by last modified time
    Searched full:waitpid (Results 251 - 275 of 651) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_platform.py 213 cpid, sts = os.waitpid(pid, 0)
  /system/netd/
TetherController.cpp 182 waitpid(mDaemonPid, NULL, 0);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linuxthreads.cc 99 * should be more than sufficient for the caller to call waitpid() until
105 * caller hanging indefinitely in waitpid(), waiting for a change in
589 #define sys0_waitpid sys.waitpid
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linuxthreads.cc 99 * should be more than sufficient for the caller to call waitpid() until
105 * caller hanging indefinitely in waitpid(), waiting for a change in
589 #define sys0_waitpid sys.waitpid
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 523 pid, status = os.waitpid(0, 0)
531 # process group and then use os.waitpid(-pgid) to wait for any
536 pid, status = os.waitpid(child, os.WNOHANG)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 523 pid, status = os.waitpid(0, 0)
531 # process group and then use os.waitpid(-pgid) to wait for any
536 pid, status = os.waitpid(child, os.WNOHANG)
  /external/bison/m4/
gnulib-comp.m4 229 # Code from module waitpid:
744 AC_LIBOBJ([waitpid])
746 gl_SYS_WAIT_MODULE_INDICATOR([waitpid])
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc 897 // According to sys/wait.h, wait(), waitid(), waitpid() may have symbol version
917 INTERCEPTOR_WITH_SUFFIX(int, waitpid, int pid, int *status, int options) {
919 COMMON_INTERCEPTOR_ENTER(ctx, waitpid, pid, status, options);
920 int res = REAL(waitpid)(pid, status, options);
952 INTERCEPT_FUNCTION(waitpid); \
    [all...]
  /external/chromium_org/third_party/pexpect/
pexpect.py 390 stores the status returned by os.waitpid. You can interpret this using
409 # status returned by os.waitpid
    [all...]
  /external/strace/
strace.c 1047 /* Make sure SIGCHLD has the default action so that waitpid
    [all...]
  /external/chromium_org/third_party/lcov/
descriptions.tests 27 test to check the error conditions in waitpid sys call
34 Tests to see if pid's returned from fork and waitpid are same.
36 Tests to see if pid's returned from fork and waitpid are same.
38 Tests to see if pid's returned from fork and waitpid are same
41 child's process id is returned through the waitpid. Check that
42 waitpid returns immediately if no child is present.
44 Tests to see if pid's returned from fork and waitpid are same
46 Tests to see if pid's returned from fork and waitpid are same
48 Tests to see if pid's returned from fork and waitpid are same
50 Tests to see if pid's returned from fork and waitpid are sam
    [all...]
  /external/chromium_org/third_party/lcov-1.9/
descriptions.tests 27 test to check the error conditions in waitpid sys call
34 Tests to see if pid's returned from fork and waitpid are same.
36 Tests to see if pid's returned from fork and waitpid are same.
38 Tests to see if pid's returned from fork and waitpid are same
41 child's process id is returned through the waitpid. Check that
42 waitpid returns immediately if no child is present.
44 Tests to see if pid's returned from fork and waitpid are same
46 Tests to see if pid's returned from fork and waitpid are same
48 Tests to see if pid's returned from fork and waitpid are same
50 Tests to see if pid's returned from fork and waitpid are sam
    [all...]
  /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...]
  /external/libvpx/libvpx/third_party/googletest/src/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/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);
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 47 #include <sys/wait.h> // For waitpid.
223 waitpid(child_pid, &status, 0);
239 waitpid(child_pid, &status, 0);
    [all...]
  /frameworks/native/cmds/installd/
commands.c 630 got_pid = waitpid(pid, &status, 0);
632 printf("waitpid interrupted, retrying\n");
638 ALOGW("waitpid failed: wanted %d, got %d: %s\n",
    [all...]
  /external/chromium/chrome/browser/
process_singleton_linux_uitest.cc 167 EXPECT_GE(HANDLE_EINTR(waitpid(pid, 0, WUNTRACED)), 0);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/
httpd.pm 210 waitpid($httpdPid, 0) if ($waitForUserInterrupt && $httpdPid);
  /external/dropbear/
svr-main.c 336 while(waitpid(-1, NULL, WNOHANG) > 0);
  /external/libppp/src/
exec.c 351 while ((wret = waitpid(pid, &stat, 0)) == -1 && errno == EINTR)
  /external/oprofile/daemon/
opd_perfmon.c 476 waitpid(c_pid, NULL, 0);
  /external/valgrind/main/include/
pub_tool_libcproc.h 55 extern Int VG_(waitpid)( Int pid, Int *status, Int options );
  /libcore/luni/src/main/java/libcore/io/
Posix.java 192 public native int waitpid(int pid, MutableInt status, int options) throws ErrnoException; method in class:Posix

Completed in 1208 milliseconds

<<11121314151617181920>>