/third_party/libuv/src/win/ |
D | stream.c | 148 uv_stream_t* send_handle, in uv_write2() argument 153 if (send_handle == NULL) { in uv_write2() 164 loop, req, (uv_pipe_t*) handle, bufs, nbufs, send_handle, cb); in uv_write2() 194 uv_stream_t* send_handle) { in uv_try_write2() argument 195 if (send_handle != NULL) in uv_try_write2()
|
D | pipe.c | 1524 req->send_handle = NULL; in uv__pipe_write_data() 1678 uv_stream_t* send_handle, in uv__pipe_write_ipc() argument 1698 if (send_handle != NULL) { in uv__pipe_write_ipc() 1699 uv_tcp_t* send_tcp_handle = (uv_tcp_t*) send_handle; in uv__pipe_write_ipc() 1716 if (send_handle != NULL) in uv__pipe_write_ipc() 1736 if (send_handle != NULL) { in uv__pipe_write_ipc() 1780 uv_stream_t* send_handle, in uv__pipe_write() argument 1784 return uv__pipe_write_ipc(loop, req, handle, bufs, nbufs, send_handle, cb); in uv__pipe_write() 1787 assert(send_handle == NULL); in uv__pipe_write()
|
D | internal.h | 131 uv_stream_t* send_handle,
|
/third_party/libuv/src/unix/ |
D | stream.c | 791 uv_stream_t* send_handle) { in uv__try_write() argument 814 if (send_handle != NULL) { in uv__try_write() 823 if (uv__is_closing(send_handle)) in uv__try_write() 826 fd_to_send = uv__handle_fd((uv_handle_t*) send_handle); in uv__try_write() 903 req->send_handle); in uv__write() 907 req->send_handle = NULL; in uv__write() 1404 uv_stream_t* send_handle) { in uv__check_before_write() argument 1417 if (send_handle != NULL) { in uv__check_before_write() 1427 if (uv__handle_fd((uv_handle_t*) send_handle) < 0) in uv__check_before_write() 1444 uv_stream_t* send_handle, in uv_write2() argument [all …]
|
/third_party/python/Lib/multiprocessing/ |
D | reduction.py | 95 def send_handle(conn, handle, destination_pid): function 181 def send_handle(conn, handle, destination_pid): function 258 send_handle = send_handle variable in AbstractReducer
|
D | resource_sharer.py | 50 reduction.send_handle(conn, new_fd, pid)
|
/third_party/node/src/ |
D | stream_base.cc | 193 uv_stream_t* send_handle = nullptr; in WriteBuffer() local 200 send_handle = reinterpret_cast<uv_stream_t*>(wrap->GetHandle()); in WriteBuffer() 208 StreamWriteResult res = Write(&buf, 1, send_handle, req_wrap_obj); in WriteBuffer() 297 uv_stream_t* send_handle = nullptr; in WriteString() local 302 send_handle = reinterpret_cast<uv_stream_t*>(wrap->GetHandle()); in WriteString() 310 StreamWriteResult res = Write(&buf, 1, send_handle, req_wrap_obj); in WriteString()
|
D | stream_base-inl.h | 165 uv_stream_t* send_handle, in Write() argument 175 if (send_handle == nullptr) { in Write() 197 err = DoWrite(req_wrap, bufs, count, send_handle); in Write()
|
D | js_stream.h | 29 uv_stream_t* send_handle) override;
|
D | js_stream.cc | 112 uv_stream_t* send_handle) { in DoWrite() argument 113 CHECK_NULL(send_handle); in DoWrite()
|
D | stream_wrap.h | 57 uv_stream_t* send_handle) override;
|
D | stream_base.h | 256 uv_stream_t* send_handle) = 0; 345 uv_stream_t* send_handle = nullptr,
|
D | stream_wrap.cc | 374 uv_stream_t* send_handle) { in DoWrite() argument 380 send_handle, in DoWrite()
|
D | tls_wrap.h | 77 uv_stream_t* send_handle) override;
|
D | tls_wrap.cc | 704 uv_stream_t* send_handle) { in DoWrite() argument 705 CHECK_NULL(send_handle); in DoWrite() 744 underlying_stream()->Write(bufs, count, send_handle); in DoWrite()
|
D | heap_utils.cc | 288 uv_stream_t* send_handle) override { in DoWrite() argument
|
D | node_file.h | 269 uv_stream_t* send_handle) override;
|
D | node_http2.h | 430 uv_stream_t* send_handle) override;
|
D | node_http2.cc | 2239 uv_stream_t* send_handle) { in DoWrite() argument 2240 CHECK_NULL(send_handle); in DoWrite()
|
D | node_file.cc | 192 uv_stream_t* send_handle) { in DoWrite() argument
|
/third_party/libuv/docs/src/ |
D | stream.rst | 97 .. c:member:: uv_stream_t* uv_write_t.send_handle 190 …eam_t* handle, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle, uv_write_cb cb) 196 `send_handle` must be a TCP, pipe and UDP handle on Unix, or a TCP 211 …ry_write2(uv_stream_t* handle, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle)
|
/third_party/libuv/include/ |
D | uv.h | 528 uv_stream_t* send_handle, 536 uv_stream_t* send_handle); 542 uv_stream_t* send_handle; /* TODO: make private and unix-only in v2.x. */ member
|
/third_party/python/Lib/test/ |
D | _test_multiprocessing.py | 3205 reduction.send_handle(conn, fd, p.pid) 3236 reduction.send_handle(conn, newfd, p.pid)
|
/third_party/libuv/ |
D | ChangeLog | 328 * doc: more accurate list of valid send_handle's (twosee) 1710 * win,pipe: properly set uv_write_t.send_handle in uv_write2() (Bert Belder)
|