Lines Matching refs:c
4 :c:type:`uv_timer_t` --- Timer handle
13 .. c:type:: uv_timer_t
17 .. c:type:: void (*uv_timer_cb)(uv_timer_t* handle)
19 Type definition for callback passed to :c:func:`uv_timer_start`.
27 .. seealso:: The :c:type:`uv_handle_t` members also apply.
33 .. c:function:: int uv_timer_init(uv_loop_t* loop, uv_timer_t* handle)
37 .. c:function:: int uv_timer_start(uv_timer_t* handle, uv_timer_cb cb, uint64_t timeout, uint64_t r…
46 …Does not update the event loop's concept of "now". See :c:func:`uv_update_time` for more informati…
50 .. c:function:: int uv_timer_stop(uv_timer_t* handle)
54 .. c:function:: int uv_timer_again(uv_timer_t* handle)
60 .. c:function:: void uv_timer_set_repeat(uv_timer_t* handle, uint64_t repeat)
77 .. c:function:: uint64_t uv_timer_get_repeat(const uv_timer_t* handle)
81 .. c:function:: uint64_t uv_timer_get_due_in(const uv_timer_t* handle)
84 :c:func:`uv_now()`.
88 .. seealso:: The :c:type:`uv_handle_t` API functions also apply.