Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/misc/
Dlv_ll.h115 void * _lv_ll_get_next(const lv_ll_t * ll_p, const void * n_act);
159 #define _LV_LL_READ(list, i) for(i = _lv_ll_get_head(list); i != NULL; i = _lv_ll_get_next(list, i))
Dlv_ll.c160 ll_p->head = _lv_ll_get_next(ll_p, node_p); in _lv_ll_remove()
180 lv_ll_node_t * n_next = _lv_ll_get_next(ll_p, node_p); in _lv_ll_remove()
200 i_next = _lv_ll_get_next(ll_p, i); in _lv_ll_clear()
279 void * _lv_ll_get_next(const lv_ll_t * ll_p, const void * n_act) in _lv_ll_get_next() function
313 for(node = _lv_ll_get_head(ll_p); node != NULL; node = _lv_ll_get_next(ll_p, node)) { in _lv_ll_get_len()
Dlv_timer.c107 next = _lv_ll_get_next(&LV_GC_ROOT(_lv_timer_ll), LV_GC_ROOT(_lv_timer_act)); in lv_timer_handler()
130 next = _lv_ll_get_next(&LV_GC_ROOT(_lv_timer_ll), next); /*Find the next timer*/ in lv_timer_handler()
288 else return _lv_ll_get_next(&LV_GC_ROOT(_lv_timer_ll), timer); in lv_timer_get_next()
Dlv_anim.c145 a_next = _lv_ll_get_next(&LV_GC_ROOT(_lv_anim_ll), a); in lv_anim_del()
406 a = _lv_ll_get_next(&LV_GC_ROOT(_lv_anim_ll), a); in anim_timer()
/lvgl-3.7.0/src/extra/others/msg/
Dlv_msg.c102 sub_dsc_t * s_next = _lv_ll_get_next(&subs_ll, s); in lv_msg_unsubscribe_obj()
181 s_next = _lv_ll_get_next(&subs_ll, s); in obj_delete_event_cb()
/lvgl-3.7.0/src/extra/libs/freetype/
Dlv_freetype.c427 pface = _lv_ll_get_next(&face_control.face_ll, pface); in face_find_in_list()
449 pface = _lv_ll_get_next(&face_control.face_ll, pface); in face_remove_from_list()
632 refer = _lv_ll_get_next(&names_ll, refer); in name_refer_find()
653 refer = _lv_ll_get_next(&names_ll, refer); in name_refer_del()
/lvgl-3.7.0/src/hal/
Dlv_hal_indev.c157 return _lv_ll_get_next(&LV_GC_ROOT(_lv_indev_ll), indev); in lv_indev_get_next()
Dlv_hal_disp.c546 return _lv_ll_get_next(&LV_GC_ROOT(_lv_disp_ll), disp); in lv_disp_get_next()
/lvgl-3.7.0/src/extra/others/ime/
Dlv_ime_pinyin.c1023 ll_index = _lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); in pinyin_k9_get_legal_py()
1111 ll_index = _lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); /*Find the next list*/ in pinyin_k9_fill_cand()
1140 … ll_index = _lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); /*Find the next list*/ in pinyin_k9_cand_page_proc()
1158 … ll_index = _lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); /*Find the next list*/ in pinyin_k9_cand_page_proc()
/lvgl-3.7.0/src/extra/widgets/span/
Dlv_span.c249 cur_node = (lv_ll_node_t *) _lv_ll_get_next(linked_list, cur_node); in lv_spangroup_get_child()
429 cur_span = _lv_ll_get_next(&spans->child_ll, cur_span); in lv_spangroup_get_expand_height()
812 cur_span = _lv_ll_get_next(&spans->child_ll, cur_span); in lv_draw_span()
883 lv_span_t * next_span = _lv_ll_get_next(&spans->child_ll, last_snippet->span); in lv_draw_span()
/lvgl-3.7.0/src/core/
Dlv_group.c270 bool focus_changed = focus_next_core(group, _lv_ll_get_head, _lv_ll_get_next); in lv_group_focus_next()
Dlv_refr.c547 next_area = _lv_ll_get_next(&disp_refr->sync_areas, sync_area); in refr_sync_areas()
570 sync_area = _lv_ll_get_next(&disp_refr->sync_areas, sync_area)) { in refr_sync_areas()
/lvgl-3.7.0/src/extra/widgets/menu/
Dlv_menu.c726 lv_menu_history_t * prev_hist = _lv_ll_get_next(history_ll, act_hist); in lv_menu_back_event_cb()
/lvgl-3.7.0/src/extra/widgets/chart/
Dlv_chart.c433 else return _lv_ll_get_next(&chart->series_ll, ser); in lv_chart_get_series_next()