Lines Matching refs:obj
29 static void sched_prio_init_data(struct thread_object *obj, struct sched_params *params) in sched_prio_init_data() argument
33 data = (struct sched_prio_data *)obj->data; in sched_prio_init_data()
52 static void prio_queue_add(struct thread_object *obj) in prio_queue_add() argument
55 (struct sched_prio_control *)obj->sched_ctl->priv; in prio_queue_add()
56 struct sched_prio_data *data = (struct sched_prio_data *)obj->data; in prio_queue_add()
76 static void prio_queue_remove(struct thread_object *obj) in prio_queue_remove() argument
78 struct sched_prio_data *data = (struct sched_prio_data *)obj->data; in prio_queue_remove()
83 static void sched_prio_sleep(struct thread_object *obj) in sched_prio_sleep() argument
85 prio_queue_remove(obj); in sched_prio_sleep()
88 static void sched_prio_wake(struct thread_object *obj) in sched_prio_wake() argument
90 prio_queue_add(obj); in sched_prio_wake()