Home
last modified time | relevance | path

Searched refs:repeat_count (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/src/misc/
Dlv_timer.c175 new_timer->repeat_count = -1; in lv_timer_create()
227 void lv_timer_set_repeat_count(lv_timer_t * timer, int32_t repeat_count) in lv_timer_set_repeat_count() argument
230 timer->repeat_count = repeat_count; in lv_timer_set_repeat_count()
320 int32_t original_repeat_count = timer->repeat_count; in lv_timer_exec()
321 if(timer->repeat_count > 0) timer->repeat_count--; in lv_timer_exec()
343 if(timer->repeat_count == 0) { /*The repeat count is over, delete the timer*/ in lv_timer_exec()
Dlv_anim_timeline.c36 uint32_t repeat_count; /**< Repeat count*/ member
94 uint32_t repeat = at->repeat_count; in lv_anim_timeline_start()
136 at->repeat_count = cnt; in lv_anim_timeline_set_repeat_count()
188 return at->repeat_count; in lv_anim_timeline_get_repeat_count()
Dlv_timer_private.h35 int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times */ member
Dlv_timer.h140 void lv_timer_set_repeat_count(lv_timer_t * timer, int32_t repeat_count);
/lvgl-latest/docs/
DCHANGELOG.rst340 - **fix(anim): optimize repeat_count type** `5975 <https://github.com/lvgl/lvgl/pull/5975>`__