Home
last modified time | relevance | path

Searched refs:custom_exec_cb (Results 1 – 4 of 4) sorted by relevance

/lvgl-latest/src/misc/
Dlv_anim_timeline.c225 if(a->custom_exec_cb) a->custom_exec_cb(a, value); in anim_timeline_set_act_time()
246 if(a->custom_exec_cb) a->custom_exec_cb(a, value); in anim_timeline_set_act_time()
282 if(a->custom_exec_cb) a->custom_exec_cb(a, value); in anim_timeline_set_act_time()
Dlv_anim.c122 if(a->exec_cb || a->custom_exec_cb) remove_concurrent_anims(new_anim); in lv_anim_start()
127 if(new_anim->custom_exec_cb) { in lv_anim_start()
128 new_anim->custom_exec_cb(new_anim, new_anim->start_value); in lv_anim_start()
387 a->custom_exec_cb = exec_cb; in lv_anim_set_custom_exec_cb()
604 … if(!state.anim_list_changed && a->custom_exec_cb) a->custom_exec_cb(a, new_value); in anim_timer()
730 if(a_current->exec_cb == NULL && a_current->custom_exec_cb == NULL) return false; in remove_concurrent_anims()
Dlv_anim.h127 lv_anim_custom_exec_cb_t custom_exec_cb; /**< Function to execute to animate, member
/lvgl-latest/tests/src/test_cases/
Dtest_anim.c24 static void custom_exec_cb(lv_anim_t * a, int32_t v) in custom_exec_cb() function
71 lv_anim_set_custom_exec_cb(&a, custom_exec_cb); in test_anim_delete_custom()