Lines Matching refs:param
615 sched_param param; in TEST_F() local
616 EXPECT_DEATH(pthread_getschedparam(dead_thread, &policy, ¶m), in TEST_F()
623 sched_param param; in TEST_F() local
624 EXPECT_EQ(ESRCH, pthread_getschedparam(null_thread, &policy, ¶m)); in TEST_F()
632 sched_param param; in TEST_F() local
633 EXPECT_DEATH(pthread_setschedparam(dead_thread, policy, ¶m), in TEST_F()
640 sched_param param; in TEST_F() local
641 EXPECT_EQ(ESRCH, pthread_setschedparam(null_thread, policy, ¶m)); in TEST_F()
2896 sched_param param = { .sched_priority = sched_get_priority_max(SCHED_FIFO) + 1 }; in TEST() local
2897 ASSERT_EQ(0, pthread_attr_setschedparam(&attr, ¶m)); in TEST()
2916 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) }; in TEST() local
2917 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶m); in TEST()
2937 sched_param param = { .sched_priority = sched_get_priority_min(SCHED_FIFO) }; in TEST() local
2938 int rc = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶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 | SCHED_RESET_ON_FORK, ¶m); in TEST()