HomeSort by relevance Sort by last modified time
    Searched defs:ppid (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/strace/tests/
getxxid.c 40 pid_t ppid; local
43 ppid = getppid();
44 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
45 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
fork-f.c 83 pid_t ppid = getpid(); local
91 ppid, prefix,
92 ppid, prefix,
95 ppid, prefix);
vfork-f.c 95 pid_t ppid = getpid(); local
103 ppid, prefix,
105 ppid, prefix,
107 ppid, prefix);
  /external/strace/tests-m32/
getxxid.c 40 pid_t ppid; local
43 ppid = getppid();
44 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
45 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
fork-f.c 83 pid_t ppid = getpid(); local
91 ppid, prefix,
92 ppid, prefix,
95 ppid, prefix);
vfork-f.c 95 pid_t ppid = getpid(); local
103 ppid, prefix,
105 ppid, prefix,
107 ppid, prefix);
  /external/strace/tests-mx32/
getxxid.c 40 pid_t ppid; local
43 ppid = getppid();
44 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
45 printf("getxpid() = %ld (ppid %ld)\n", id, (long) ppid);
fork-f.c 83 pid_t ppid = getpid(); local
91 ppid, prefix,
92 ppid, prefix,
95 ppid, prefix);
vfork-f.c 95 pid_t ppid = getpid(); local
103 ppid, prefix,
105 ppid, prefix,
107 ppid, prefix);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-1.c 35 int ret, ppid; local
56 ppid = getpid();
58 if (pid != ppid) {
59 printf("Test FAILED: Pids are different %i != %i\n", pid, ppid);
  /external/ltp/testcases/kernel/syscalls/getppid/
getppid02.c 60 pid_t pid, ppid; local
69 ppid = getpid();
77 if (TEST_RETURN != ppid)
79 TEST_RETURN, ppid);
  /external/google-breakpad/src/client/linux/dump_writer_common/
thread_info.h 49 pid_t ppid; // parent process member in struct:google_breakpad::ThreadInfo
  /external/libcap-ng/libcap-ng-0.7/utils/
proc-llist.h 33 pid_t ppid; // parent process ID member in struct:_lnode
pscap.c 67 int pid, ppid, uid = -1, euid = -1; local
101 sscanf(buf, "%d (%15c", &ppid, cmd);
102 sscanf(tmp+2, "%c %d", &state, &ppid);
105 if (pid == 2 || ppid == 2)
149 "ppid", "pid", "name", "command",
166 printf("%-5d %-5d %-10s %-16s ", ppid, pid,
169 printf("%-5d %-5d %-10d %-16s ", ppid, pid,
  /external/linux-kselftest/tools/testing/selftests/powerpc/signal/
signal.c 44 pid_t ppid = getpid(); local
67 signal_self(ppid, SIGUSR1);
89 rc = signal_self(ppid, SIGUSR1);
  /external/ltp/testcases/kernel/containers/pidns/
pidns01.c 72 pid_t cpid, ppid; local
74 ppid = getppid();
77 if (cpid == CHILD_PID && ppid == PARENT_PID) {
78 printf("Got expected cpid and ppid\n");
81 printf("Got unexpected result of cpid=%d ppid=%d\n",
82 cpid, ppid);
pidns06.c 62 int cpid, ppid, *par_pid; local
65 ppid = getppid();
69 if (cpid != CINIT_PID || ppid != PARENT_PID) {
71 "pid=%d ppid=%d\n", cpid, ppid);
pidns10.c 61 pid_t pid, ppid; local
65 ppid = getppid();
66 if (pid != CHILD_PID || ppid != PARENT_PID) {
pidns12.c 75 pid_t pid, ppid; local
79 ppid = getppid();
80 if (pid != CHILD_PID || ppid != PARENT_PID) {
pidns16.c 93 pid_t pid, ppid; local
97 ppid = getppid();
99 if ((pid != CHILD_PID) || (ppid != PARENT_PID))
pidns17.c 62 pid_t pid, ppid; local
66 ppid = getppid();
67 if (pid != CHILD_PID || ppid != PARENT_PID) {
pidns04.c 77 pid_t cpid, ppid; local
79 ppid = getppid();
85 if ((cpid == CHILD_PID) && (ppid == PARENT_PID)) {
95 printf("got unexpected result of cpid=%d ppid=%d\n",
96 cpid, ppid);
pidns13.c 77 pid_t pid, ppid; local
82 ppid = getppid();
83 if (pid != CHILD_PID || ppid != PARENT_PID) {
pidns20.c 83 pid_t pid, ppid; local
90 ppid = getppid();
92 if (pid != CHILD_PID || ppid != PARENT_PID) {
  /external/linux-kselftest/tools/testing/selftests/ptrace/
peeksiginfo.c 168 pid_t ppid = getppid(); local
170 if (ppid != getppid())

Completed in 2361 milliseconds

1 2 3