Lines Matching refs:node_set_next
28 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next);
75 node_set_next(ll_p, n_new, ll_p->head); /*After new comes the old head*/ in _lv_ll_ins_head()
112 node_set_next(ll_p, n_prev, n_new); in _lv_ll_ins_prev()
115 node_set_next(ll_p, n_new, n_act); in _lv_ll_ins_prev()
133 node_set_next(ll_p, n_new, NULL); /*No next after the new tail*/ in _lv_ll_ins_tail()
136 node_set_next(ll_p, ll_p->tail, n_new); in _lv_ll_ins_tail()
175 node_set_next(ll_p, ll_p->tail, NULL); in _lv_ll_remove()
182 node_set_next(ll_p, n_prev, n_next); in _lv_ll_remove()
224 node_set_next(ll_new_p, node, ll_new_p->head); in _lv_ll_chg_list()
238 node_set_next(ll_new_p, node, NULL); in _lv_ll_chg_list()
241 node_set_next(ll_new_p, ll_new_p->tail, node); in _lv_ll_chg_list()
342 node_set_next(ll_p, n_before, n_act); in _lv_ll_move_before()
345 node_set_next(ll_p, n_act, n_after); in _lv_ll_move_before()
398 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next) in node_set_next() function