/libuv/test/ |
H A D | test-shutdown-twice.c | 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 | 57 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
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-shutdown-simultaneous.c | 68 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in read_cb()
|
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 | blackhole-server.c | 83 r = uv_shutdown(&conn->shutdown_req, stream, shutdown_cb); in read_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 | benchmark-tcp-write-batch.c | 66 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb); in connect_cb()
|
H A D | test-callback-stack.c | 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 | 107 r = uv_shutdown(&shutdown_req, handle, 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 | test-shutdown-eof.c | 107 uv_shutdown(&shutdown_req, (uv_stream_t*) &tcp, shutdown_cb); in connect_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 | benchmark-ping-pongs.c | 152 uv_shutdown(&pinger->shutdown_req, in pinger_read_cb()
|
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()
|
/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
|
/libuv/docs/src/ |
H A D | tcp.rst | 170 Due to some platform inconsistencies, mixing of :c:func:`uv_shutdown` and
|
H A D | stream.rst | 107 .. c:function:: int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb)
|
/libuv/src/unix/ |
H A D | stream.c | 1160 int uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) { in uv_shutdown() function
|
/libuv/ |
H A D | ChangeLog | 920 * unix,stream: optimize uv_shutdown() codepath (Jameson Nash) 1285 * unix,stream: fix loop hang after uv_shutdown (Jameson Nash) 2941 * unix: remove incorrect assertion in uv_shutdown() (Jameson Nash) 5241 * unix: correct error when calling uv_shutdown twice (Keno Fischer) 5338 * unix: correct error when calling uv_shutdown twice (Saúl Ibarra Corretgé) 5527 * windows: make uv_shutdown() for write-only pipes work (Bert Belder) 5619 * unix: move uv_shutdown() assertion (Keno Fischer) 5650 * windows: make uv_shutdown() for write-only pipes work (Bert Belder) 5725 * windows: make uv_shutdown() for write-only pipes work (Bert Belder)
|
/libuv/include/ |
H A D | uv.h | 452 UV_EXTERN int uv_shutdown(uv_shutdown_t* req,
|