Home
last modified time | relevance | path

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

/lvgl-latest/src/misc/
Dlv_ll.h116 void * lv_ll_get_next(const lv_ll_t * ll_p, const void * n_act);
161 #define LV_LL_READ(list, i) for(i = lv_ll_get_head(list); i != NULL; i = lv_ll_get_next(list, i))
Dlv_ll.c133 ll_p->head = lv_ll_get_next(ll_p, node_p); in lv_ll_remove()
153 lv_ll_node_t * n_next = lv_ll_get_next(ll_p, node_p); in lv_ll_remove()
169 i_next = lv_ll_get_next(ll_p, i); in lv_ll_clear_custom()
227 void * lv_ll_get_next(const lv_ll_t * ll_p, const void * n_act) in lv_ll_get_next() function
250 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.c105 next = lv_ll_get_next(timer_head, timer_active); in lv_timer_handler()
128 next = lv_ll_get_next(timer_head, next); /*Find the next timer*/ in lv_timer_handler()
278 else return lv_ll_get_next(timer_ll_p, timer); in lv_timer_get_next()
Dlv_anim.c171 a = del ? lv_ll_get_head(anim_ll_p) : lv_ll_get_next(anim_ll_p, a); in lv_anim_delete()
625 a = lv_ll_get_next(anim_ll_p, a); in anim_timer()
757 a = del ? lv_ll_get_head(anim_ll_p) : lv_ll_get_next(anim_ll_p, a); in remove_concurrent_anims()
/lvgl-latest/src/
Dlv_api_map_v9_1.h61 #define _lv_ll_get_next lv_ll_get_next
/lvgl-latest/src/widgets/span/
Dlv_span.c294 cur_node = (lv_ll_node_t *) lv_ll_get_next(linked_list, cur_node); in lv_spangroup_get_child()
476 cur_span = lv_ll_get_next(&spans->child_ll, cur_span); in lv_spangroup_get_expand_height()
504 if(lv_ll_get_next(&spans->child_ll, cur_span) == NULL) { in lv_spangroup_get_expand_height()
542 tmp_span = lv_ll_get_next(&spans->child_ll, tmp_span)) in lv_spangroup_get_expand_height()
945 cur_span = lv_ll_get_next(&spans->child_ll, cur_span); in lv_draw_span()
971 if(lv_ll_get_next(&spans->child_ll, cur_span) == NULL) { in lv_draw_span()
1020 lv_span_t * next_span = lv_ll_get_next(&spans->child_ll, last_snippet->span); in lv_draw_span()
/lvgl-latest/src/others/font_manager/
Dlv_font_manager_recycle.c80 lv_font_recycle_t * recycle_next = lv_ll_get_next(recycle_ll, recycle); in lv_font_manager_recycle_delete()
/lvgl-latest/src/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()
1116 ll_index = lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); /*Find the next list*/ in pinyin_k9_fill_cand()
1144 ll_index = lv_ll_get_next(&pinyin_ime->k9_legal_py_ll, ll_index); /*Find the next list*/ in pinyin_k9_cand_page_proc()
1166 … 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-latest/src/drivers/uefi/
Dlv_uefi_indev_keyboard.c197 …for(node = lv_ll_get_head(&indev_ctx->handles); node != NULL; node = lv_ll_get_next(&indev_ctx->ha… in _simple_text_input_read_cb()
Dlv_uefi_indev_pointer.c198 …for(node = lv_ll_get_head(&indev_ctx->handles); node != NULL; node = lv_ll_get_next(&indev_ctx->ha… in _simple_pointer_read_cb()
Dlv_uefi_indev_touch.c201 …for(node = lv_ll_get_head(&indev_ctx->handles); node != NULL; node = lv_ll_get_next(&indev_ctx->ha… in _absolute_pointer_read_cb()
/lvgl-latest/src/drivers/glfw/
Dlv_glfw_window.c281 window = lv_ll_get_next(&glfw_window_ll, window); in window_update_handler()
/lvgl-latest/src/draw/
Dlv_image_decoder.c194 return lv_ll_get_next(img_decoder_ll_p, decoder); in lv_image_decoder_get_next()
Dlv_draw_vector.c787 next_task = lv_ll_get_next(task_list, task); in lv_vector_for_each_destroy_tasks()
/lvgl-latest/src/misc/cache/
Dlv_cache_lru_rb.c484 else *ll_node = lv_ll_get_next(&lru->ll, *ll_node); in cache_iter_next_cb()
/lvgl-latest/src/core/
Dlv_group.c260 bool focus_changed = focus_next_core(group, lv_ll_get_head, lv_ll_get_next); in lv_group_focus_next()
Dlv_refr.c521 next_area = lv_ll_get_next(&disp_refr->sync_areas, sync_area); in refr_sync_areas()
545 sync_area = lv_ll_get_next(&disp_refr->sync_areas, sync_area)) { in refr_sync_areas()
/lvgl-latest/src/widgets/menu/
Dlv_menu.c789 lv_menu_history_t * prev_hist = lv_ll_get_next(history_ll, act_hist); in lv_menu_back_event_cb()
/lvgl-latest/src/others/observer/
Dlv_observer.c293 lv_observer_t * observer_next = lv_ll_get_next(&subject->subs_ll, observer); in lv_subject_deinit()
/lvgl-latest/src/display/
Dlv_display.c237 return lv_ll_get_next(disp_ll_p, disp); in lv_display_get_next()
/lvgl-latest/src/indev/
Dlv_indev.c168 return lv_ll_get_next(indev_ll_head, indev); in lv_indev_get_next()
/lvgl-latest/src/widgets/chart/
Dlv_chart.c418 else return lv_ll_get_next(&chart->series_ll, ser); in lv_chart_get_series_next()