Searched refs:repeat_count (Results 1 – 5 of 5) sorted by relevance
175 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() argument230 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()
36 uint32_t repeat_count; /**< Repeat count*/ member94 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()
35 int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times */ member
140 void lv_timer_set_repeat_count(lv_timer_t * timer, int32_t repeat_count);
340 - **fix(anim): optimize repeat_count type** `5975 <https://github.com/lvgl/lvgl/pull/5975>`__