Lines Matching refs:param
640 sched_param param; in TEST_F() local
641 EXPECT_DEATH(pthread_getschedparam(dead_thread, &policy, ¶m), in TEST_F()
648 sched_param param; in TEST_F() local
649 EXPECT_EQ(ESRCH, pthread_getschedparam(null_thread, &policy, ¶m)); in TEST_F()
657 sched_param param; in TEST_F() local
658 EXPECT_DEATH(pthread_setschedparam(dead_thread, policy, ¶m), in TEST_F()
665 sched_param param; in TEST_F() local
666 EXPECT_EQ(ESRCH, pthread_setschedparam(null_thread, policy, ¶m)); in TEST_F()
2939 sched_param param = { .sched_priority = sched_get_priority_max(SCHED_FIFO) + 1 }; in TEST() local
2940 ASSERT_EQ(0, pthread_attr_setschedparam(&attr, ¶m)); in TEST()
2959 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) }; in TEST() local
2960 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶m); in TEST()
2980 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) }; in TEST() local
2981 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶m); in TEST()
3002 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) }; in TEST() local
3003 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO | SCHED_RESET_ON_FORK, ¶m); in TEST()