Lines Matching refs:function
61 .. c:function:: int uv_loop_init(uv_loop_t* loop)
65 .. c:function:: int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...)
96 .. c:function:: int uv_loop_close(uv_loop_t* loop)
98 Releases all internal loop resources. Call this function only when the loop
100 or it will return UV_EBUSY. After this function returns, the user can free
103 .. c:function:: uv_loop_t* uv_default_loop(void)
108 This function is just a convenient way for having a global loop throughout
115 This function is not thread safe.
117 .. c:function:: int uv_run(uv_loop_t* loop, uv_run_mode mode)
119 This function runs the event loop. It will act differently depending on the
126 - UV_RUN_ONCE: Poll for i/o once. Note that this function blocks if
137 .. c:function:: int uv_loop_alive(const uv_loop_t* loop)
142 .. c:function:: void uv_stop(uv_loop_t* loop)
146 If this function was called before blocking for i/o, the loop won't block
149 .. c:function:: size_t uv_loop_size(void)
154 .. c:function:: int uv_backend_fd(const uv_loop_t* loop)
167 .. c:function:: int uv_backend_timeout(const uv_loop_t* loop)
172 .. c:function:: uint64_t uv_now(const uv_loop_t* loop)
185 .. c:function:: void uv_update_time(uv_loop_t* loop)
191 You won't normally need to call this function unless you have callbacks
195 .. c:function:: void uv_walk(uv_loop_t* loop, uv_walk_cb walk_cb, void* arg)
199 .. c:function:: int uv_loop_fork(uv_loop_t* loop)
209 It is necessary to explicitly call this function on every event
212 continue to use it in the parent). This function must be called
213 before calling :c:func:`uv_run` or any other API function using
221 function.
223 This function is not implemented on Windows, where it returns ``UV_ENOSYS``.
227 This function is experimental. It may contain bugs, and is subject to
250 invalid. That function must be called again to determine the
253 .. c:function:: void* uv_loop_get_data(const uv_loop_t* loop)
259 .. c:function:: void uv_loop_set_data(uv_loop_t* loop, void* data)