Home
last modified time | relevance | path

Searched refs:shutdown_req (Results 1 – 25 of 25) sorted by relevance

/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-shutdown-close.c31 static uv_shutdown_t shutdown_req; variable
40 ASSERT(req == &shutdown_req); in shutdown_cb()
57 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
H A Dtest-shutdown-simultaneous.c29 static uv_shutdown_t shutdown_req; variable
45 ASSERT_PTR_EQ(req, &shutdown_req); in shutdown_cb()
68 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in read_cb()
H A Dblackhole-server.c30 uv_shutdown_t shutdown_req; member
83 r = uv_shutdown(&conn->shutdown_req, stream, shutdown_cb); in read_cb()
89 conn_rec* conn = container_of(req, conn_rec, shutdown_req); in shutdown_cb()
H A Dtest-tcp-open.c39 static uv_shutdown_t shutdown_req; variable
105 ASSERT(req == &shutdown_req); in shutdown_cb()
179 r = uv_shutdown(&shutdown_req, (uv_stream_t*) &client, shutdown_cb); in timer_cb()
200 r = uv_shutdown(&shutdown_req, stream, shutdown_cb); in connect_cb()
354 ASSERT(0 == uv_shutdown(&shutdown_req, (uv_stream_t*) &client, shutdown_cb)); in TEST_IMPL()
H A Dtest-tcp-writealot.c49 static uv_shutdown_t shutdown_req; variable
68 ASSERT(req == &shutdown_req); in shutdown_cb()
138 r = uv_shutdown(&shutdown_req, stream, shutdown_cb); in connect_cb()
H A Dtest-shutdown-eof.c31 static uv_shutdown_t shutdown_req; variable
75 ASSERT(req == &shutdown_req); in shutdown_cb()
107 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in connect_cb()
H A Dtest-not-writable-after-shutdown.c25 static uv_shutdown_t shutdown_req; variable
39 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
H A Dtest-ref.c30 static uv_shutdown_t shutdown_req; variable
72 ASSERT(req == &shutdown_req); in shutdown_cb()
79 uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in write_cb()
97 uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_and_shutdown()
H A Dtest-tcp-shutdown-after-write.c32 static uv_shutdown_t shutdown_req; variable
71 r = uv_shutdown(&shutdown_req, (uv_stream_t*)&conn, shutdown_cb); in timer_cb()
H A Dbenchmark-tcp-write-batch.c40 static uv_shutdown_t shutdown_req; variable
66 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
H A Dtest-tcp-close-reset.c39 static uv_shutdown_t shutdown_req; variable
75 ASSERT(0 == uv_shutdown(&shutdown_req, (uv_stream_t*) handle, shutdown_cb)); in do_close()
89 ASSERT(UV_ENOTCONN == uv_shutdown(&shutdown_req, (uv_stream_t*) handle, shutdown_cb)); in do_close()
H A Dtest-callback-stack.c37 static uv_shutdown_t shutdown_req; variable
99 if (uv_shutdown(&shutdown_req, (uv_stream_t*)tcp, shutdown_cb)) { in read_cb()
H A Dtest-ipc-heavy-traffic-deadlock-bug.c44 static uv_shutdown_t shutdown_req; variable
107 r = uv_shutdown(&shutdown_req, handle, shutdown_cb); in read_cb()
H A Dbenchmark-ping-pongs.c37 uv_shutdown_t shutdown_req; member
152 uv_shutdown(&pinger->shutdown_req, in pinger_read_cb()
H A Dtest-tcp-bind-error.c267 uv_shutdown_t shutdown_req; in TEST_IMPL() local
284 r = uv_shutdown(&shutdown_req, (uv_stream_t*) &server, NULL); in TEST_IMPL()
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dstream-inl.h39 handle->stream.conn.shutdown_req = NULL; in uv__stream_init()
H A Dstream.c218 handle->stream.conn.shutdown_req = req; in uv_shutdown()
H A Dtcp.c216 stream->stream.conn.shutdown_req = NULL; in uv__process_tcp_shutdown_req()
1169 handle->stream.conn.shutdown_req); in uv__process_tcp_write_req()
H A Dtty.c2246 handle->stream.conn.shutdown_req);
2276 stream->stream.conn.shutdown_req = NULL;
H A Dpipe.c2074 uv__pipe_shutdown(loop, handle, handle->stream.conn.shutdown_req); in uv__process_pipe_write_req()
2151 handle->stream.conn.shutdown_req = NULL; in uv__process_pipe_shutdown_req()
/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dstream.c83 stream->shutdown_req = NULL; in uv__stream_init()
671 req = stream->shutdown_req; in uv__drain()
676 stream->shutdown_req = NULL; in uv__drain()
1240 stream->shutdown_req = req; in uv_shutdown()
H A Dpipe.c35 handle->shutdown_req = NULL; in uv_pipe_init()
/netbsd-src/external/mit/libuv/dist/include/uv/
H A Dunix.h288 uv_shutdown_t *shutdown_req; \
H A Dwin.h428 uv_shutdown_t* shutdown_req;
/netbsd-src/external/mit/libuv/dist/
H A DChangeLog2219 * win, pipe: null-initialize stream->shutdown_req (Jameson Nash)