Lines Matching defs:handle
29 #include "handle-inl.h"
34 uv_stream_t* handle,
36 uv__handle_init(loop, (uv_handle_t*) handle, type);
37 handle->write_queue_size = 0;
38 handle->activecnt = 0;
39 handle->stream.conn.shutdown_req = NULL;
40 handle->stream.conn.write_reqs_pending = 0;
42 UV_REQ_INIT(&handle->read_req, UV_READ);
43 handle->read_req.event_handle = NULL;
44 handle->read_req.wait_handle = INVALID_HANDLE_VALUE;
45 handle->read_req.data = handle;
49 INLINE static void uv__connection_init(uv_stream_t* handle) {
50 handle->flags |= UV_HANDLE_CONNECTION;