Lines Matching refs:function

115 .. c:function:: int uv_is_active(const uv_handle_t* handle)
131 function, then it's active from the moment that function is called.
134 .. c:function:: int uv_is_closing(const uv_handle_t* handle)
139 This function should only be used between the initialization of the handle and the
142 .. c:function:: void uv_close(uv_handle_t* handle, uv_close_cb close_cb)
159 .. c:function:: void uv_ref(uv_handle_t* handle)
162 is already referenced calling this function again will have no effect.
166 .. c:function:: void uv_unref(uv_handle_t* handle)
169 is not referenced calling this function again will have no effect.
173 .. c:function:: int uv_has_ref(const uv_handle_t* handle)
179 .. c:function:: size_t uv_handle_size(uv_handle_type type)
191 .. c:function:: int uv_send_buffer_size(uv_handle_t* handle, int* value)
202 This function works for TCP, pipe and UDP handles on Unix and for TCP and
208 .. c:function:: int uv_recv_buffer_size(uv_handle_t* handle, int* value)
219 This function works for TCP, pipe and UDP handles on Unix and for TCP and
225 .. c:function:: int uv_fileno(const uv_handle_t* handle, uv_os_fd_t* fd)
233 itself has been closed, this function will return `UV_EBADF`.
236 Be very careful when using this function. libuv assumes it's in control of the file
239 .. c:function:: uv_loop_t* uv_handle_get_loop(const uv_handle_t* handle)
245 .. c:function:: void* uv_handle_get_data(const uv_handle_t* handle)
251 .. c:function:: void uv_handle_set_data(uv_handle_t* handle, void* data)
257 .. c:function:: uv_handle_type uv_handle_get_type(const uv_handle_t* handle)
263 .. c:function:: const char* uv_handle_type_name(uv_handle_type type)