Lines Matching refs:expr
37 :cpp:expr:`lv_timer_create(timer_cb, period_ms, user_data)`. It returns an
72 :cpp:expr:`lv_timer_ready(timer)` makes a Timer run on the next call of
75 :cpp:expr:`lv_timer_reset(timer)` resets the period of a Timer. It will be
85 - :cpp:expr:`lv_timer_set_cb(timer, new_cb)`
86 - :cpp:expr:`lv_timer_set_period(timer, new_period_ms)`
87 - :cpp:expr:`lv_timer_set_user_data(timer, user_data)`
96 :cpp:expr:`lv_timer_set_repeat_count(timer, count)`. By default, once the Timer has
99 You can use :cpp:expr:`lv_timer_set_auto_delete(timer, false)` if you want the timer
114 :cpp:expr:`lv_timer_pause(timer)` pauses the specified Timer.
116 :cpp:expr:`lv_timer_resume(timer)` resumes the specified Timer.
144 You can temporarily disable Timer handling with :cpp:expr:`lv_timer_enable(false)`.
147 :cpp:expr:`lv_timer_enable(true)` as soon as the need for the pause is over.
157 :cpp:expr:`lv_timer_handler_set_resume_cb(cb, user_data)`. The callback should have
175 :cpp:expr:`lv_async_call(my_function, data_p)` can be used to call ``my_function`` on
182 :cpp:expr:`lv_async_call_cancel(my_function, data_p)`, which will remove all
185 Note that if :cpp:expr:`lv_async_call(my_function, data_p)` is called from a thread
213 in ``my_screen_cleanup`` you could just use :cpp:expr:`lv_obj_delete_async(widget)` which