Home
last modified time | relevance | path

Searched refs:node_set_next (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/src/misc/
Dlv_ll.c28 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next);
65 node_set_next(ll_p, n_new, ll_p->head); /*After new comes the old head*/ in lv_ll_ins_head()
96 node_set_next(ll_p, n_prev, n_new); in lv_ll_ins_prev()
99 node_set_next(ll_p, n_new, n_act); in lv_ll_ins_prev()
112 node_set_next(ll_p, n_new, NULL); /*No next after the new tail*/ in lv_ll_ins_tail()
115 node_set_next(ll_p, ll_p->tail, n_new); in lv_ll_ins_tail()
148 node_set_next(ll_p, ll_p->tail, NULL); in lv_ll_remove()
155 node_set_next(ll_p, n_prev, n_next); in lv_ll_remove()
188 node_set_next(ll_new_p, node, ll_new_p->head); in lv_ll_chg_list()
202 node_set_next(ll_new_p, node, NULL); in lv_ll_chg_list()
[all …]