Lines Matching refs:param
193 struct sched_param param, getschedparam; in thread_top_term() local
195 param.sched_priority = N_THR_T - id; in thread_top_term()
200 zassert_false(pthread_setschedparam(self, SCHED_RR, ¶m), in thread_top_term()
465 struct sched_param param; in ZTEST() local
466 int rc = sched_getparam(0, ¶m); in ZTEST()
481 struct sched_param param = { in ZTEST() local
484 int rc = sched_setparam(0, ¶m); in ZTEST()
492 struct sched_param param = { in ZTEST() local
496 int rc = sched_setscheduler(0, policy, ¶m); in ZTEST()
594 struct sched_param param; in test_pthread_setschedprio_fn() local
601 param.sched_priority = ~prio; in test_pthread_setschedprio_fn()
602 zassert_ok(pthread_getschedparam(self, &policy, ¶m)); in test_pthread_setschedprio_fn()
603 zassert_equal(param.sched_priority, prio, "Priority unchanged"); in test_pthread_setschedprio_fn()