Lines Matching refs:exec_cb
75 lv_anim_exec_xcb_t exec_cb; /**< Function to execute to animate*/ member
138 static inline void lv_anim_set_exec_cb(lv_anim_t * a, lv_anim_exec_xcb_t exec_cb) in lv_anim_set_exec_cb() argument
140 a->exec_cb = exec_cb; in lv_anim_set_exec_cb()
185 static inline void lv_anim_set_custom_exec_cb(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb) in lv_anim_set_custom_exec_cb() argument
188 a->exec_cb = (lv_anim_exec_xcb_t)exec_cb; in lv_anim_set_custom_exec_cb()
348 bool lv_anim_del(void * var, lv_anim_exec_xcb_t exec_cb);
361 lv_anim_t * lv_anim_get(void * var, lv_anim_exec_xcb_t exec_cb);
380 static inline bool lv_anim_custom_del(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb) in lv_anim_custom_del() argument
382 return lv_anim_del(a ? a->var : NULL, (lv_anim_exec_xcb_t)exec_cb); in lv_anim_custom_del()
394 static inline lv_anim_t * lv_anim_custom_get(lv_anim_t * a, lv_anim_custom_exec_cb_t exec_cb) in lv_anim_custom_get() argument
396 return lv_anim_get(a ? a->var : NULL, (lv_anim_exec_xcb_t)exec_cb); in lv_anim_custom_get()