/third_party/libuv/test/ |
H A D | test-shutdown-twice.c | 23 * This is a regression test for issue #1113 (calling uv_shutdown twice will 51 r = uv_shutdown(&req1, req->handle, shutdown_cb); in connect_cb() 53 r = uv_shutdown(&req2, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-tcp-open.c | 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-not-writable-after-shutdown.c | 39 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-shutdown-close.c | 23 * These tests verify that the uv_shutdown callback is always made, even when 57 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | echo-server.c | 95 ASSERT_OK(uv_shutdown(sreq, handle, after_shutdown)); in after_read() 144 ASSERT_OK(uv_shutdown(malloc(sizeof* sreq), handle, on_shutdown)); in after_read()
|
H A D | test-tcp-close-reset.c | 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 | test-tcp-shutdown-after-write.c | 71 r = uv_shutdown(&shutdown_req, (uv_stream_t*)&conn, shutdown_cb); in timer_cb()
|
H A D | test-ipc-heavy-traffic-deadlock-bug.c | 107 r = uv_shutdown(&shutdown_req, handle, shutdown_cb); in read_cb()
|
H A D | benchmark-tcp-write-batch.c | 66 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | blackhole-server.c | 83 r = uv_shutdown(&conn->shutdown_req, stream, shutdown_cb); in read_cb()
|
H A D | test-callback-stack.c | 99 if (uv_shutdown(&shutdown_req, (uv_stream_t*)tcp, shutdown_cb)) { in read_cb() 100 FATAL("uv_shutdown failed"); in read_cb()
|
H A D | test-shutdown-eof.c | 107 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in connect_cb()
|
H A D | test-shutdown-simultaneous.c | 68 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in read_cb()
|
H A D | test-tcp-writealot.c | 138 r = uv_shutdown(&shutdown_req, stream, shutdown_cb); in connect_cb()
|
H A D | benchmark-ping-pongs.c | 152 uv_shutdown(&pinger->shutdown_req, in pinger_read_cb()
|
H A D | test-ref.c | 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-bind-error.c | 284 r = uv_shutdown(&shutdown_req, (uv_stream_t*) &server, NULL); in TEST_IMPL()
|
H A D | test-getsockname.c | 75 r = uv_shutdown(req, handle, after_shutdown); in after_read()
|
/third_party/node/deps/uvwasi/src/ |
H A D | sync_helpers.c | 48 uv_shutdown(&req, stream, do_stream_shutdown); in shutdown_stream_sync()
|
/third_party/libuv/src/win/ |
H A D | stream.c | 203 int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb) { in uv_shutdown() function
|
/third_party/node/deps/uv/src/win/ |
H A D | stream.c | 203 int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb) { in uv_shutdown() function
|
/third_party/node/src/ |
H A D | stream_wrap.cc | 338 return req_wrap->Dispatch(uv_shutdown, stream(), AfterUvShutdown); in DoShutdown()
|
H A D | spawn_sync.cc | 163 int r = uv_shutdown(&shutdown_req_, uv_stream(), ShutdownCallback); in Start()
|
/third_party/libuv/src/unix/ |
H A D | stream.c | 1155 int uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) { in uv_shutdown() function
|
/third_party/node/deps/uv/src/unix/ |
H A D | stream.c | 1221 int uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) { in uv_shutdown() function
|