Lines Matching refs:pid

114     LOG("not exist pid test:");

115 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
127 LOG("test pid '0' and cover all supported priority:");
220 LOG("invalid 'pid' test:");
244 LOG("not exist pid test:");
245 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
340 LOG("invalid 'pid' test:");
357 * @tc.name sched_getparam error test with not exist pid.
364 LOG("not exist pid test:");
365 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
438 * @tc.name sched_setparam error test with invalid pid.
447 LOG("invalid 'pid' test:");
464 * @tc.name sched_setparam error test with not exist pid.
473 LOG("not exist pid test:");
474 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
691 * @tc.name sched_getscheduler api error test with invalid pid.
696 LOG("invalid pid test:");
713 * @tc.name sched_getscheduler api error test with not exist pid.
720 LOG("not exist pid test:");
721 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
768 * @tc.name sched_setscheduler api error test with invalid pid.
777 LOG("invalid pid test:");
794 * @tc.name sched_setscheduler api error test with not exist pid.
803 LOG("not exist pid test:");
804 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
939 * @tc.name sched_rr_get_interval error test with invalid pid
945 LOG("invalid 'pid' test:");
962 * @tc.name sched_rr_get_interval error test with not exist pid
970 LOG("not exist pid test:");
971 pid_t nonExitPid = GetNonExistPid(); // valid but not exist pid
1019 pid_t pid = fork();
1020 ASSERT_TRUE(pid >= 0) << "> parent: fork errno = " << errno;
1021 if (pid == 0) {
1041 WaitProcExitedOK(pid);