Searched refs:_lv_ll_get_next (Results 1 – 14 of 14) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_ll.h | 115 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))
|
D | lv_ll.c | 160 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()
|
D | lv_timer.c | 107 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()
|
D | lv_anim.c | 145 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/ |
D | lv_msg.c | 102 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/ |
D | lv_freetype.c | 427 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/ |
D | lv_hal_indev.c | 157 return _lv_ll_get_next(&LV_GC_ROOT(_lv_indev_ll), indev); in lv_indev_get_next()
|
D | lv_hal_disp.c | 546 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/ |
D | lv_ime_pinyin.c | 1023 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/ |
D | lv_span.c | 249 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/ |
D | lv_group.c | 270 bool focus_changed = focus_next_core(group, _lv_ll_get_head, _lv_ll_get_next); in lv_group_focus_next()
|
D | lv_refr.c | 547 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/ |
D | lv_menu.c | 726 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/ |
D | lv_chart.c | 433 else return _lv_ll_get_next(&chart->series_ll, ser); in lv_chart_get_series_next()
|