HomeSort by relevance Sort by last modified time
    Searched refs:waitpid (Results 51 - 75 of 172) sorted by null

1 23 4 5 6 7

  /system/core/debuggerd/
utility.c 56 pid_t n = waitpid(tid, &status, __WALL | WNOHANG);
59 LOG("waitpid failed: %s\n", strerror(errno));
62 XLOG("waitpid: n=%d status=%08x\n", n, status);
66 LOG("unexpected waitpid response: n=%d, status=%08x\n", n, status);
  /system/extras/ext4_utils/
setup_fs.c 56 while ((pid=waitpid(-1, &status, 0)) != child) {
58 fprintf(stderr, "error: setup_fs: waitpid failed!\n");
  /system/extras/tests/cpueater/
daemonize.c 117 waitpid(pid, &status, 0);
  /system/netd/
PanController.cpp 98 waitpid(mPid, NULL, 0);
PppController.cpp 114 waitpid(mPid, NULL, 0);
  /external/blktrace/btt/
bno_plot.py 126 os.waitpid(pid, 0)
  /external/clang/utils/
CaptureCmd 63 res = os.waitpid(pid, 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)
  /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. */
  /system/core/adb/
backup_service.c 44 waitpid(params->pid, &status, 0);
  /external/webkit/Tools/Scripts/
run-api-tests 159 waitpid($pid, 0);
213 waitpid($pid, 0);
272 waitpid($buildProcess, 0);
  /bionic/libc/unistd/
popen.c 133 * if already `pclosed', or waitpid returns an error.
153 pid = waitpid(cur->pid, &pstat, 0);
  /external/valgrind/main/memcheck/tests/
addressable.c 134 while((ret = waitpid(pid, &status, 0)) != pid) {
136 perror("waitpid");
  /system/core/init/
signal_handler.c 54 while ( (pid = waitpid(-1, &status, block ? 0 : WNOHANG)) == -1 && errno == EINTR );
56 INFO("waitpid returned pid %d, status = %08x\n", pid, status);
  /system/core/libctest/
ctest.c 103 waitpid(pid, &status, 0);
  /external/bluetooth/glib/glib/
gtestutils.c     [all...]
  /external/chromium/base/
process_util_posix.cc 58 // waitpid() has no direct support on POSIX for specifying a timeout, you can
64 // Our strategy is to call waitpid() once up front to check if the process
67 // waitpid(). The amount of time we sleep starts out at 1 milliseconds, and
77 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG));
98 ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG));
238 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG));
619 pid_t ret = HANDLE_EINTR(waitpid(pid, 0, 0));
698 const pid_t result = HANDLE_EINTR(waitpid(handle, &status, WNOHANG));
700 PLOG(ERROR) << "waitpid(" << handle << ")";
739 if (HANDLE_EINTR(waitpid(handle, &status, 0)) == -1)
    [all...]
  /build/tools/atree/
fs.cpp 170 waitpid(pid, &status, 0);
  /external/linux-tools-perf/util/
run-command.c 158 pid_t waiting = waitpid(pid, &status, 0);
163 error("waitpid failed (%s)", strerror(errno));
  /external/openssh/
readpass.c 97 while ((ret = waitpid(pid, &status, 0)) < 0)
  /external/oprofile/libutil++/
child_reader.cpp 227 waitpid(pid, &ret, 0);
237 // FIXME: this seems impossible, waitpid *must* wait

Completed in 2412 milliseconds

1 23 4 5 6 7