HomeSort by relevance Sort by last modified time
    Searched defs:cpid (Results 1 - 8 of 8) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 44 pid_t pid, cpid; local
58 switch (cpid = vfork()) {
71 pid = waitpid(cpid, &pstat, 0);
  /external/valgrind/memcheck/tests/linux/
getregset.c 49 pid_t cpid, pid; local
52 cpid = fork();
53 if (cpid == -1)
55 if (cpid == 0)
65 if (ptrace(0x4204, cpid, NT_PRSTATUS, &iov) == -1)
  /ndk/tests/device/test-wait/jni/
test_wait.c 45 int cpid = fork(); local
46 if (cpid < 0) {
51 if (cpid == 0) { /* in the chid process */
57 printf("Parent waiting for child with pid=%d\n", cpid);
58 int exit_code = wait_func(cpid);
  /external/toybox/toys/pending/
crontab.c 268 pid_t pid, cpid; local
310 cpid = waitpid(pid, &status, 0);
311 } while ((cpid == -1) && (errno == EINTR));
tar.c 288 pid_t cpid; local
293 cpid = fork();
294 if (cpid == -1) perror_exit("fork");
296 if (!cpid) { /* Child reads from pipe */
319 pid_t cpid; local
325 cpid = fork();
326 if (cpid == -1) perror_exit("fork");
328 if (!cpid) { // Child reads from pipe
355 waitpid(cpid, &status, 0);
357 xprintf("tar : %d: child returned %d\n", cpid, WTERMSIG(status))
503 pid_t cpid; local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
pex-unix.c 240 pid_t cpid; local
256 cpid = wait (status);
259 if (time != NULL && cpid >= 0)
281 if (cpid < 0 || cpid == pid)
285 return cpid;
289 psl->pid = cpid;
  /external/ppp/pppd/
tty.c 929 int cpid; local
931 cpid = safe_fork(ifd, ofd, (log_to_fd >= 0? log_to_fd: 2));
932 if (cpid == -1) {
936 if (cpid == 0) {
950 charshunt_pid = cpid;
951 record_child(cpid, "pppd (charshunt)", charshunt_done, NULL, 1);
    [all...]
  /hardware/ril/include/telephony/
ril.h 1329 int cpid; \/* 8-bit Cell Parameters ID described in TS 25.331, 0..127, INT_MAX if unknown *\/ member in struct:__anon35306
    [all...]

Completed in 531 milliseconds