Lines Matching refs:node
218 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
220 _lv_ll_remove(ll_ori_p, node); in _lv_ll_chg_list()
224 node_set_prev(ll_new_p, node, NULL); in _lv_ll_chg_list()
225 node_set_next(ll_new_p, node, ll_new_p->head); in _lv_ll_chg_list()
228 node_set_prev(ll_new_p, ll_new_p->head, node); in _lv_ll_chg_list()
231 ll_new_p->head = node; /*Set the new head in the dsc.*/ in _lv_ll_chg_list()
233 ll_new_p->tail = node; in _lv_ll_chg_list()
238 node_set_prev(ll_new_p, node, ll_new_p->tail); in _lv_ll_chg_list()
239 node_set_next(ll_new_p, node, NULL); in _lv_ll_chg_list()
242 node_set_next(ll_new_p, ll_new_p->tail, node); in _lv_ll_chg_list()
245 ll_new_p->tail = node; /*Set the new tail in the dsc.*/ in _lv_ll_chg_list()
247 ll_new_p->head = node; in _lv_ll_chg_list()
326 void * node; in _lv_ll_get_len() local
328 for(node = _lv_ll_get_head(ll_p); node != NULL; node = _lv_ll_get_next(ll_p, node)) { in _lv_ll_get_len()