/third_party/libuv/test/ |
D | test-pipe-set-fchmod.c | 57 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE); in TEST_IMPL() 66 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE | UV_READABLE); in TEST_IMPL() 78 r = uv_pipe_chmod(NULL, UV_WRITABLE | UV_READABLE); in TEST_IMPL() 85 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE | UV_READABLE); in TEST_IMPL()
|
D | test-poll.c | 286 uv_poll_start(&context->poll_handle, UV_WRITABLE, connection_poll_cb); 296 if (events & UV_WRITABLE) { 374 new_events &= ~UV_WRITABLE; 376 context->delayed_events = UV_WRITABLE; 379 context->delayed_events |= UV_WRITABLE; 389 UV_WRITABLE, 391 context->events = UV_WRITABLE; 408 new_events &= ~UV_WRITABLE; 509 connection_context->events = UV_READABLE | UV_WRITABLE | UV_DISCONNECT; 511 UV_READABLE | UV_WRITABLE | UV_DISCONNECT, [all …]
|
D | test-poll-oob.c | 84 UV_READABLE | UV_WRITABLE, in poll_cb() 127 if (events & UV_WRITABLE) { in poll_cb() 144 UV_PRIORITIZED | UV_READABLE | UV_WRITABLE, in connection_cb()
|
D | test-poll-close.c | 60 uv_poll_start(&poll_handles[i], UV_READABLE | UV_WRITABLE, NULL); in TEST_IMPL()
|
D | test-poll-closesocket.c | 82 r = uv_poll_start(&handle, UV_WRITABLE, poll_cb); in TEST_IMPL()
|
D | test-poll-close-doesnt-corrupt-stack.c | 99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb); in TEST_IMPL()
|
/third_party/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_ev_driver_libuv.cc | 66 GPR_ASSERT((poll_events_ & UV_WRITABLE) == 0); in RegisterForOnWriteableLocked() 68 poll_events_ |= UV_WRITABLE; in RegisterForOnWriteableLocked() 143 if (events & UV_WRITABLE) { in ares_uv_poll_cb_locked() 147 polled_fd->poll_events_ &= ~UV_WRITABLE; in ares_uv_poll_cb_locked()
|
/third_party/libuv/src/unix/ |
D | poll.c | 60 pevents |= UV_WRITABLE; in uv__poll_io() 124 assert((pevents & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT | in uv_poll_start() 145 if (pevents & UV_WRITABLE) in uv_poll_start()
|
D | pipe.c | 337 mode != UV_WRITABLE && in uv_pipe_chmod() 338 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod() 366 if (mode & UV_WRITABLE) in uv_pipe_chmod()
|
/third_party/libuv/src/win/ |
D | poll.c | 121 if (handle->events & UV_WRITABLE) { in uv__fast_poll_submit_poll_req() 177 events |= UV_WRITABLE; in uv__fast_poll_process_poll_req() 287 if (handle->events & UV_WRITABLE) { in uv__slow_poll_thread_proc() 322 reported_events |= UV_WRITABLE; in uv__slow_poll_thread_proc() 326 reported_events |= UV_WRITABLE; in uv__slow_poll_thread_proc() 493 assert((events & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT | in uv__poll_set()
|
D | pipe.c | 2526 mode != UV_WRITABLE && in uv_pipe_chmod() 2527 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod() 2554 if (mode & UV_WRITABLE) in uv_pipe_chmod()
|
/third_party/libuv/docs/code/uvwget/ |
D | main.c | 87 if (!status && events & UV_WRITABLE) flags |= CURL_CSELECT_OUT; in curl_perform() 126 uv_poll_start(&curl_context->poll_handle, UV_WRITABLE, curl_perform); in handle_socket()
|
/third_party/curl/docs/examples/ |
D | multi-uv.c | 140 if(events & UV_WRITABLE) in curl_perform() 189 events |= UV_WRITABLE; in handle_socket()
|
/third_party/libuv/docs/src/ |
D | poll.rst | 56 UV_WRITABLE = 2, 89 `UV_READABLE`, `UV_WRITABLE`, `UV_PRIORITIZED` and `UV_DISCONNECT`. As soon 115 If one of the events `UV_READABLE` or `UV_WRITABLE` are set, the 126 writable afterwards (when `UV_WRITABLE` is set).
|
D | pipe.rst | 117 be ``UV_WRITABLE``, ``UV_READABLE`` or ``UV_WRITABLE | UV_READABLE``. This
|
/third_party/libwebsockets/lib/event-libs/libuv/ |
D | libuv.c | 115 if (revents & UV_WRITABLE) { in lws_io_cb() 641 int current_events = w->actual_events & (UV_READABLE | UV_WRITABLE); in elops_io_uv() 666 current_events |= UV_WRITABLE; in elops_io_uv() 674 current_events &= ~UV_WRITABLE; in elops_io_uv() 679 if (!(current_events & (UV_READABLE | UV_WRITABLE))) in elops_io_uv()
|
/third_party/node/deps/uvwasi/src/ |
D | poll_oneoff.c | 182 event->events = UV_DISCONNECT | UV_WRITABLE; in uvwasi__poll_oneoff_state_add_fdevent()
|
D | uvwasi.c | 2433 else if ((fdevent->revents & (UV_READABLE | UV_WRITABLE)) != 0) in uvwasi_poll_oneoff()
|
/third_party/node/src/ |
D | pipe_wrap.cc | 101 NODE_DEFINE_CONSTANT(constants, UV_WRITABLE); in Initialize()
|
D | cares_wrap.cc | 100 events & UV_WRITABLE ? task->sock : ARES_SOCKET_BAD); in ares_poll_cb() 140 (read ? UV_READABLE : 0) | (write ? UV_WRITABLE : 0), in ares_sockstate_cb()
|
/third_party/node/lib/ |
D | net.js | 1489 mode |= PipeConstants.UV_WRITABLE;
|
/third_party/libuv/docs/src/guide/ |
D | utilities.rst | 273 ``UV_READABLE`` or ``UV_WRITABLE``. Now libuv will invoke the poll callback
|
/third_party/libuv/include/ |
D | uv.h | 822 UV_WRITABLE = 2, enumerator
|