/third_party/ltp/testcases/kernel/syscalls/getppid/ |
H A D | getppid01.c | 17 pid_t ppid, pid_max; in verify_getppid() local 21 ppid = getppid(); in verify_getppid() 22 if (ppid > pid_max) in verify_getppid() 23 tst_res(TFAIL, "getppid() returned %d, out of range!", ppid); in verify_getppid() 25 tst_res(TPASS, "getppid() returned %d", ppid); in verify_getppid()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
H A D | 1-1.c | 35 int ret, ppid; in main() local 56 ppid = getpid(); in main() 58 if (pid != ppid) { in main() 59 printf("Test FAILED: Pids are different %i != %i\n", pid, ppid); in main()
|
/third_party/ltp/testcases/kernel/controllers/cgroup_fj/ |
H A D | cgroup_fj_stress.sh | 65 local ppid="$3" 72 if [ -z "$ppid" ]; then 77 pid="$ppid" 88 attach_task "$new_path" $((cur_depth+1)) "$ppid" 91 if [ -n "$ppid" ]; then
|
/third_party/ltp/utils/sctp/func_tests/ |
H A D | test_inaddr_any.c | 84 uint32_t ppid; in main() local 168 ppid = rand(); /* Choose an arbitrary value. */ in main() 170 sinfo->sinfo_ppid = ppid; in main() 202 MSG_EOR, stream, ppid); in main() 216 ppid++; in main() 218 sinfo->sinfo_ppid = ppid; in main() 232 MSG_EOR, stream, ppid); in main() 237 MSG_EOR, stream, ppid); in main()
|
H A D | test_sctp_sendrecvmsg.c | 82 uint32_t ppid; in main() local 170 ppid = rand(); in main() 174 ppid, 0, stream, 0, 0); in main() 224 strlen(message) + 1, MSG_EOR, stream, ppid); in main() 244 ppid++; in main() 248 ppid, 0, stream, 0, 0); in main() 253 ppid, 0, stream, 2000, 0); in main() 260 ppid, 0, stream, 0, 0); in main() 269 ppid, 0, stream, 2000, 0); in main() 295 strlen(nottlmsg) + 1, MSG_EOR, stream, ppid); in main() [all...] |
H A D | test_timetolive.c | 106 uint32_t ppid; in main() local 210 ppid = rand(); /* Choose an arbitrary value. */ in main() 212 sinfo->sinfo_ppid = ppid; in main() 259 MSG_EOR, stream, ppid); in main() 284 ppid++; in main() 286 sinfo->sinfo_ppid = ppid; in main() 300 sinfo->sinfo_ppid = ppid; in main() 313 sinfo->sinfo_ppid = ppid; in main() 326 sinfo->sinfo_ppid = ppid; in main() 354 MSG_EOR, stream, ppid); in main() [all...] |
H A D | test_fragments.c | 91 uint32_t ppid; in main() local 160 ppid = rand(); /* Choose an arbitrary value. */ in main() 162 sinfo->sinfo_ppid = ppid; in main() 203 test_check_msg_data(&inmessage, error, msg_len, MSG_EOR, stream, ppid); in main() 265 MSG_EOR, stream, ppid); in main() 271 stream, ppid); in main() 279 MSG_EOR, stream, ppid); in main()
|
H A D | test_peeloff.c | 77 uint32_t ppid; in main() local 149 ppid = rand(); /* Choose an arbitrary value. */ in main() 151 sinfo->sinfo_ppid = ppid; in main() 196 MSG_EOR, stream, ppid); in main() 237 MSG_EOR, stream, ppid); in main() 258 MSG_EOR, stream, ppid); in main() 277 MSG_EOR, stream, ppid); in main()
|
H A D | test_1_to_1_events.c | 69 uint32_t ppid; in main() local 128 ppid = rand(); /* Choose an arbitrary value. */ in main() 131 sinfo->sinfo_ppid = ppid; in main() 177 MSG_EOR, stream, ppid); in main()
|
H A D | test_basic.c | 84 uint32_t ppid; in main() local 185 ppid = rand(); /* Choose an arbitrary value. */ in main() 187 sinfo->sinfo_ppid = ppid; in main() 257 MSG_EOR, stream, ppid); in main() 300 ppid++; in main() 302 sinfo->sinfo_ppid = ppid; in main() 341 MSG_EOR, stream, ppid); in main() 346 MSG_EOR, stream, ppid); in main()
|
/third_party/ltp/testcases/kernel/containers/pidns/ |
H A D | pidns20.c | 33 pid_t cpid, ppid; in child_func() local 36 ppid = getppid(); in child_func() 38 if (cpid != 1 || ppid != 0) { in child_func() 39 tst_res(TFAIL, "Got unexpected result of cpid=%d ppid=%d", cpid, ppid); in child_func()
|
H A D | pidns01.c | 22 pid_t cpid, ppid; in child_func() local 25 ppid = getppid(); in child_func() 28 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns16.c | 31 pid_t cpid, ppid; in child_func() local 34 ppid = getppid(); in child_func() 37 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns17.c | 25 pid_t cpid, ppid; in child_func() local 28 ppid = getppid(); in child_func() 31 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns13.c | 54 pid_t pid, ppid; in child_fn() local 58 ppid = getppid(); in child_fn() 59 if (pid != CHILD_PID || ppid != PARENT_PID) in child_fn()
|
H A D | pidns30.c | 45 pid_t cpid, ppid; in child_func() local 51 ppid = getppid(); in child_func() 54 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns31.c | 45 pid_t cpid, ppid; in child_func() local 49 ppid = getppid(); in child_func() 52 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns05.c | 29 pid_t cpid, ppid; in child_func() local 32 ppid = getppid(); in child_func() 35 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns06.c | 20 pid_t ppid = getppid(); in child_func() local 23 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
H A D | pidns10.c | 20 pid_t ppid = getppid(); in child_func() local 23 TST_EXP_EQ_LI(ppid, 0); in child_func()
|
/third_party/libevdev/test/ |
H A D | test-main.c | 37 int ppid = getppid(); in is_debugger_attached() local 38 if (ptrace(PTRACE_ATTACH, ppid, NULL, NULL) == 0) { in is_debugger_attached() 39 waitpid(ppid, NULL, 0); in is_debugger_attached() 41 ptrace(PTRACE_DETACH, ppid, NULL, NULL); in is_debugger_attached()
|
/third_party/ltp/testcases/kernel/syscalls/setpgid/ |
H A D | setpgid02.c | 24 static pid_t pgid, pid, ppid, inval_pgid; variable 33 {&ppid, &pgid, ESRCH}, 40 ppid = getppid(); in setup()
|
/third_party/node/deps/openssl/openssl/ |
H A D | e_os.h | 359 int ppid; in nssgetpid() member 360 } ppid = { 0 }; in nssgetpid() local 362 PROCESSHANDLE_DECOMPOSE_(phandle, &ppid.cpu_pin.cpu, &ppid.cpu_pin.pin); in nssgetpid() 363 return ppid.ppid; in nssgetpid()
|
/third_party/openssl/ |
H A D | e_os.h | 359 int ppid; in nssgetpid() member 360 } ppid = { 0 }; in nssgetpid() local 362 PROCESSHANDLE_DECOMPOSE_(phandle, &ppid.cpu_pin.cpu, &ppid.cpu_pin.pin); in nssgetpid() 363 return ppid.ppid; in nssgetpid()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | getppid.c | 27 pid_t ppid = getpid(); in getppid_0100() local 31 EXPECT_EQ("getppid_0100", child_ppid, ppid); in getppid_0100()
|