Lines Matching refs:runqueue
82 if (!list_empty(&bvt_ctl->runqueue)) { in update_svt()
83 tmp_obj = get_first_item(&bvt_ctl->runqueue, struct thread_object, data); in update_svt()
109 if (list_empty(&bvt_ctl->runqueue)) { in runqueue_add()
110 list_add(&data->list, &bvt_ctl->runqueue); in runqueue_add()
112 list_for_each(pos, &bvt_ctl->runqueue) { in runqueue_add()
121 list_add_tail(&data->list, &bvt_ctl->runqueue); in runqueue_add()
169 if (!list_empty(&bvt_ctl->runqueue)) { in sched_tick_handler()
188 INIT_LIST_HEAD(&bvt_ctl->runqueue); in sched_bvt_init()
278 if (!list_empty(&bvt_ctl->runqueue)) { in sched_bvt_pick_next()
279 first = bvt_ctl->runqueue.next; in sched_bvt_pick_next()
280 sec = (first->next == &bvt_ctl->runqueue) ? NULL : first->next; in sched_bvt_pick_next()