Searched refs:lv_ll_t (Results 1 – 16 of 16) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_ll.h | 36 } lv_ll_t; typedef 47 void _lv_ll_init(lv_ll_t * ll_p, uint32_t node_size); 54 void * _lv_ll_ins_head(lv_ll_t * ll_p); 62 void * _lv_ll_ins_prev(lv_ll_t * ll_p, void * n_act); 69 void * _lv_ll_ins_tail(lv_ll_t * ll_p); 77 void _lv_ll_remove(lv_ll_t * ll_p, void * node_p); 83 void _lv_ll_clear(lv_ll_t * ll_p); 93 void _lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head); 100 void * _lv_ll_get_head(const lv_ll_t * ll_p); 107 void * _lv_ll_get_tail(const lv_ll_t * ll_p); [all …]
|
D | lv_ll.c | 27 static void node_set_prev(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * prev); 28 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next); 47 void _lv_ll_init(lv_ll_t * ll_p, uint32_t node_size) in _lv_ll_init() 67 void * _lv_ll_ins_head(lv_ll_t * ll_p) in _lv_ll_ins_head() 96 void * _lv_ll_ins_prev(lv_ll_t * ll_p, void * n_act) in _lv_ll_ins_prev() 126 void * _lv_ll_ins_tail(lv_ll_t * ll_p) in _lv_ll_ins_tail() 154 void _lv_ll_remove(lv_ll_t * ll_p, void * node_p) in _lv_ll_remove() 191 void _lv_ll_clear(lv_ll_t * ll_p) in _lv_ll_clear() 217 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() 256 void * _lv_ll_get_head(const lv_ll_t * ll_p) in _lv_ll_get_head() [all …]
|
D | lv_gc.h | 44 …LV_DISPATCH(f, lv_ll_t, _lv_timer_ll) /*Linked list to store the lv_timers*/ … 45 …LV_DISPATCH(f, lv_ll_t, _lv_disp_ll) /*Linked list of display device*/ … 46 …LV_DISPATCH(f, lv_ll_t, _lv_indev_ll) /*Linked list of input device*/ … 47 …LV_DISPATCH(f, lv_ll_t, _lv_fsdrv_ll) … 48 …LV_DISPATCH(f, lv_ll_t, _lv_anim_ll) … 49 …LV_DISPATCH(f, lv_ll_t, _lv_group_ll) … 50 …LV_DISPATCH(f, lv_ll_t, _lv_img_decoder_ll) … 51 …LV_DISPATCH(f, lv_ll_t, _lv_obj_style_trans_ll) …
|
/lvgl-3.7.0/src/extra/widgets/meter/ |
D | lv_meter.h | 95 lv_ll_t scale_ll; 96 lv_ll_t indicator_ll;
|
/lvgl-3.7.0/src/extra/others/ime/ |
D | lv_ime_pinyin.h | 50 lv_ll_t k9_legal_py_ll;
|
/lvgl-3.7.0/src/core/ |
D | lv_group.c | 27 static bool focus_next_core(lv_group_t * group, void * (*begin)(const lv_ll_t *), 28 void * (*move)(const lv_ll_t *, const void *)); 394 static bool focus_next_core(lv_group_t * group, void * (*begin)(const lv_ll_t *), in focus_next_core() argument 395 void * (*move)(const lv_ll_t *, const void *)) in focus_next_core() argument
|
D | lv_group.h | 60 lv_ll_t obj_ll; /**< Linked list to store the objects in the group*/
|
/lvgl-3.7.0/src/extra/widgets/chart/ |
D | lv_chart.h | 103 lv_ll_t series_ll; /**< Linked list for the series (stores lv_chart_series_t)*/ 104 lv_ll_t cursor_ll; /**< Linked list for the cursors (stores lv_chart_cursor_t)*/
|
/lvgl-3.7.0/src/extra/widgets/span/ |
D | lv_span.h | 57 lv_ll_t child_ll;
|
D | lv_span.c | 232 lv_ll_t * linked_list = &spans->child_ll; in lv_spangroup_get_child()
|
/lvgl-3.7.0/src/extra/widgets/menu/ |
D | lv_menu.h | 66 lv_ll_t history_ll;
|
D | lv_menu.c | 169 lv_ll_t * history_ll = &(menu->history_ll); in lv_menu_refr() 210 lv_ll_t * history_ll = &(menu->history_ll); in lv_menu_set_page() 458 lv_ll_t * history_ll = &(menu->history_ll); in lv_menu_clear_history() 542 lv_ll_t * history_ll = &(menu->history_ll); in lv_menu_destructor() 720 lv_ll_t * history_ll = &(menu->history_ll); in lv_menu_back_event_cb()
|
/lvgl-3.7.0/src/extra/others/fragment/ |
D | lv_fragment_manager.c | 32 lv_ll_t attached; 36 lv_ll_t stack;
|
/lvgl-3.7.0/src/extra/others/msg/ |
D | lv_msg.c | 41 static lv_ll_t subs_ll;
|
/lvgl-3.7.0/src/hal/ |
D | lv_hal_disp.h | 191 lv_ll_t sync_areas;
|
/lvgl-3.7.0/src/extra/libs/freetype/ |
D | lv_freetype.c | 28 lv_ll_t face_ll; 73 static lv_ll_t names_ll;
|