Lines Matching refs:it
63 Each buffer is used only once and the user is responsible for freeing it in the
66 A suggested size (65536 at the moment in most cases) is provided, but it's just an indication,
117 Returns non-zero if the handle is active, zero if it's inactive. What
121 by closing it with uv_close().
124 deals with i/o - is active when it is doing something that involves i/o,
127 - A uv_check_t, uv_idle_t, uv_timer_t, etc. handle is active when it has
131 function, then it's active from the moment that function is called.
146 Moreover, the memory can only be released in `close_cb` or after it has
196 If `*value` == 0, then it will set `*value` to the current send buffer size.
197 If `*value` > 0 then it will use `*value` to set the new send buffer size.
213 If `*value` == 0, then it will set `*value` to the current receive buffer size.
214 If `*value` > 0 then it will use `*value` to set the new receive buffer size.
236 Be very careful when using this function. libuv assumes it's in control of the file
237 descriptor so any change to it may lead to malfunction.