Lines Matching refs:function
107 .. c:function:: int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb)
114 .. c:function:: int uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb)
121 .. c:function:: int uv_accept(uv_stream_t* server, uv_stream_t* client)
124 connections. Call this function after receiving a :c:type:`uv_connection_cb`
125 to accept the connection. Before calling this function the client handle must
129 this function will complete successfully the first time. If you attempt to use
130 it more than once, it may fail. It is suggested to only call this function once
136 .. c:function:: int uv_read_start(uv_stream_t* stream, uv_alloc_cb alloc_cb, uv_read_cb read_cb)
147 .. c:function:: int uv_read_stop(uv_stream_t*)
152 This function is idempotent and may be safely called on a stopped stream.
154 This function will always succeed; hence, checking its return value is
159 .. c:function:: int uv_write(uv_write_t* req, uv_stream_t* handle, const uv_buf_t bufs[], unsigned …
190 .. c:function:: int uv_write2(uv_write_t* req, uv_stream_t* handle, const uv_buf_t bufs[], unsigned…
192 Extended write function for sending handles over a pipe. The pipe must be
200 .. c:function:: int uv_try_write(uv_stream_t* handle, const uv_buf_t bufs[], unsigned int nbufs)
211 .. c:function:: int uv_try_write2(uv_stream_t* handle, const uv_buf_t bufs[], unsigned int nbufs, u…
213 Same as :c:func:`uv_try_write` and extended write function for sending
221 .. c:function:: int uv_is_readable(const uv_stream_t* handle)
225 .. c:function:: int uv_is_writable(const uv_stream_t* handle)
229 .. c:function:: int uv_stream_set_blocking(uv_stream_t* handle, int blocking)
252 .. c:function:: size_t uv_stream_get_write_queue_size(const uv_stream_t* stream)