/libuv/test/ |
H A D | test-shutdown-close.c | 31 static uv_shutdown_t shutdown_req; variable 40 ASSERT_PTR_EQ(req, &shutdown_req); in shutdown_cb() 57 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-shutdown-simultaneous.c | 29 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 D | blackhole-server.c | 30 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 D | test-not-writable-after-shutdown.c | 25 static uv_shutdown_t shutdown_req; variable 39 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-tcp-writealot.c | 49 static uv_shutdown_t shutdown_req; variable 68 ASSERT_PTR_EQ(req, &shutdown_req); in shutdown_cb() 138 r = uv_shutdown(&shutdown_req, stream, shutdown_cb); in connect_cb()
|
H A D | test-shutdown-eof.c | 31 static uv_shutdown_t shutdown_req; variable 75 ASSERT_PTR_EQ(req, &shutdown_req); in shutdown_cb() 107 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in connect_cb()
|
H A D | test-tcp-open.c | 39 static uv_shutdown_t shutdown_req; variable 105 ASSERT_PTR_EQ(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() 358 ASSERT_OK(uv_shutdown(&shutdown_req, in TEST_IMPL()
|
H A D | test-tcp-shutdown-after-write.c | 32 static uv_shutdown_t shutdown_req; variable 71 r = uv_shutdown(&shutdown_req, (uv_stream_t*)&conn, shutdown_cb); in timer_cb()
|
H A D | benchmark-tcp-write-batch.c | 40 static uv_shutdown_t shutdown_req; variable 66 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-callback-stack.c | 37 static uv_shutdown_t shutdown_req; variable 99 if (uv_shutdown(&shutdown_req, (uv_stream_t*)tcp, shutdown_cb)) { in read_cb()
|
H A D | test-ipc-heavy-traffic-deadlock-bug.c | 44 static uv_shutdown_t shutdown_req; variable 107 r = uv_shutdown(&shutdown_req, handle, shutdown_cb); in read_cb()
|
H A D | test-ref.c | 30 static uv_shutdown_t shutdown_req; variable 72 ASSERT_PTR_EQ(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 D | test-tcp-close-reset.c | 39 static uv_shutdown_t shutdown_req; variable 75 ASSERT_OK(uv_shutdown(&shutdown_req, in do_close() 92 ASSERT_EQ(UV_ENOTCONN, uv_shutdown(&shutdown_req, (uv_stream_t*) handle, in do_close()
|
H A D | benchmark-ping-pongs.c | 37 uv_shutdown_t shutdown_req; member 152 uv_shutdown(&pinger->shutdown_req, in pinger_read_cb()
|
H A D | test-tcp-bind-error.c | 267 uv_shutdown_t shutdown_req; in TEST_IMPL() local 284 r = uv_shutdown(&shutdown_req, (uv_stream_t*) &server, NULL); in TEST_IMPL()
|
/libuv/src/win/ |
H A D | stream-inl.h | 39 handle->stream.conn.shutdown_req = NULL; in uv__stream_init()
|
H A D | stream.c | 217 handle->stream.conn.shutdown_req = req; in uv_shutdown()
|
H A D | tcp.c | 214 stream->stream.conn.shutdown_req = NULL; in uv__process_tcp_shutdown_req() 1151 handle->stream.conn.shutdown_req); in uv__process_tcp_write_req()
|
H A D | tty.c | 2235 handle->stream.conn.shutdown_req); 2265 stream->stream.conn.shutdown_req = NULL;
|
H A D | pipe.c | 2220 uv__pipe_shutdown(loop, handle, handle->stream.conn.shutdown_req); in uv__process_pipe_write_req() 2300 handle->stream.conn.shutdown_req = NULL; in uv__process_pipe_shutdown_req()
|
/libuv/src/ |
H A D | uv-common.h | 272 (h->stream.conn.shutdown_req != NULL) 275 (h->shutdown_req != NULL)
|
/libuv/src/unix/ |
H A D | stream.c | 93 stream->shutdown_req = NULL; in uv__stream_init() 639 req = stream->shutdown_req; in uv__drain() 644 stream->shutdown_req = NULL; in uv__drain() 1179 stream->shutdown_req = req; in uv_shutdown()
|
H A D | pipe.c | 48 handle->shutdown_req = NULL; in uv_pipe_init()
|
/libuv/include/uv/ |
H A D | unix.h | 287 uv_shutdown_t *shutdown_req; \
|
H A D | win.h | 431 uv_shutdown_t* shutdown_req;
|