Lines Matching refs:node
181 void lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head) in lv_ll_chg_list() argument
183 lv_ll_remove(ll_ori_p, node); in lv_ll_chg_list()
187 node_set_prev(ll_new_p, node, NULL); in lv_ll_chg_list()
188 node_set_next(ll_new_p, node, ll_new_p->head); in lv_ll_chg_list()
191 node_set_prev(ll_new_p, ll_new_p->head, node); in lv_ll_chg_list()
194 ll_new_p->head = node; /*Set the new head in the dsc.*/ in lv_ll_chg_list()
196 ll_new_p->tail = node; in lv_ll_chg_list()
201 node_set_prev(ll_new_p, node, ll_new_p->tail); in lv_ll_chg_list()
202 node_set_next(ll_new_p, node, NULL); in lv_ll_chg_list()
205 node_set_next(ll_new_p, ll_new_p->tail, node); in lv_ll_chg_list()
208 ll_new_p->tail = node; /*Set the new tail in the dsc.*/ in lv_ll_chg_list()
210 ll_new_p->head = node; in lv_ll_chg_list()
248 void * node; in lv_ll_get_len() local
250 for(node = lv_ll_get_head(ll_p); node != NULL; node = lv_ll_get_next(ll_p, node)) { in lv_ll_get_len()