Home
last modified time | relevance | path

Searched refs:UV_WRITABLE (Results 1 - 25 of 25) sorted by relevance

/third_party/libuv/test/
H A Dtest-poll.c287 uv_poll_start(&context->poll_handle, UV_WRITABLE, connection_poll_cb);
297 if (events & UV_WRITABLE) {
375 new_events &= ~UV_WRITABLE;
377 context->delayed_events = UV_WRITABLE;
380 context->delayed_events |= UV_WRITABLE;
390 UV_WRITABLE,
392 context->events = UV_WRITABLE;
409 new_events &= ~UV_WRITABLE;
510 connection_context->events = UV_READABLE | UV_WRITABLE | UV_DISCONNECT;
512 UV_READABLE | UV_WRITABLE | UV_DISCONNEC
[all...]
H A Dtest-pipe-set-fchmod.c59 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE); in TEST_IMPL()
68 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE | UV_READABLE); in TEST_IMPL()
80 r = uv_pipe_chmod(NULL, UV_WRITABLE | UV_READABLE); in TEST_IMPL()
87 r = uv_pipe_chmod(&pipe_handle, UV_WRITABLE | UV_READABLE); in TEST_IMPL()
H A Dtest-poll-oob.c84 UV_READABLE | UV_WRITABLE, in poll_cb()
127 if (events & UV_WRITABLE) { in poll_cb()
148 UV_PRIORITIZED | UV_READABLE | UV_WRITABLE, in connection_cb()
H A Dtest-poll-close.c60 uv_poll_start(&poll_handles[i], UV_READABLE | UV_WRITABLE, NULL); in TEST_IMPL()
H A Dtest-poll-closesocket.c82 r = uv_poll_start(&handle, UV_WRITABLE, poll_cb); in TEST_IMPL()
H A Dtest-poll-close-doesnt-corrupt-stack.c99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb); in TEST_IMPL()
/third_party/libuv/src/unix/
H A Dpoll.c60 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()
H A Dpipe.c440 mode != UV_WRITABLE && in uv_pipe_chmod()
441 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod()
469 if (mode & UV_WRITABLE) in uv_pipe_chmod()
/third_party/node/deps/uv/src/unix/
H A Dpoll.c60 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()
H A Dpipe.c355 mode != UV_WRITABLE && in uv_pipe_chmod()
356 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod()
384 if (mode & UV_WRITABLE) in uv_pipe_chmod()
/third_party/libuv/src/win/
H A Dpoll.c121 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()
492 assert((events & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT | in uv__poll_set()
H A Dpipe.c2609 mode != UV_WRITABLE && in uv_pipe_chmod()
2610 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod()
2637 if (mode & UV_WRITABLE) in uv_pipe_chmod()
/third_party/node/deps/uv/src/win/
H A Dpoll.c119 if (handle->events & UV_WRITABLE) { in uv__fast_poll_submit_poll_req()
175 events |= UV_WRITABLE; in uv__fast_poll_process_poll_req()
285 if (handle->events & UV_WRITABLE) { in uv__slow_poll_thread_proc()
320 reported_events |= UV_WRITABLE; in uv__slow_poll_thread_proc()
324 reported_events |= UV_WRITABLE; in uv__slow_poll_thread_proc()
491 assert((events & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT | in uv__poll_set()
H A Dpipe.c2578 mode != UV_WRITABLE && in uv_pipe_chmod()
2579 mode != (UV_WRITABLE | UV_READABLE)) in uv_pipe_chmod()
2606 if (mode & UV_WRITABLE) in uv_pipe_chmod()
/third_party/curl/docs/examples/
H A Dmulti-uv.c142 if(events & UV_WRITABLE) in curl_perform()
191 events |= UV_WRITABLE; in handle_socket()
/third_party/libuv/docs/code/uvwget/
H A Dmain.c87 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/libwebsockets/lib/event-libs/libuv/
H A Dlibuv.c139 if (revents & UV_WRITABLE) { in lws_io_cb()
546 int current_events = w->actual_events & (UV_READABLE | UV_WRITABLE); in elops_io_uv()
571 current_events |= UV_WRITABLE; in elops_io_uv()
579 current_events &= ~UV_WRITABLE; in elops_io_uv()
584 if (!(current_events & (UV_READABLE | UV_WRITABLE))) in elops_io_uv()
/third_party/node/src/
H A Dpipe_wrap.cc104 NODE_DEFINE_CONSTANT(constants, UV_WRITABLE); in Initialize()
H A Dcares_wrap.cc102 events & UV_WRITABLE ? task->sock : ARES_SOCKET_BAD); in ares_poll_cb()
142 (read ? UV_READABLE : 0) | (write ? UV_WRITABLE : 0), in ares_sockstate_cb()
/third_party/node/deps/uvwasi/src/
H A Dpoll_oneoff.c182 event->events = UV_DISCONNECT | UV_WRITABLE; in uvwasi__poll_oneoff_state_add_fdevent()
H A Duvwasi.c2510 else if ((fdevent->revents & (UV_READABLE | UV_WRITABLE)) != 0) in uvwasi_poll_oneoff()
/third_party/libuv/include/
H A Duv.h880 UV_WRITABLE = 2, enumerator
/third_party/libuv/include/uv_ndk/
H A Duv.h809 UV_WRITABLE = 2, enumerator
/third_party/node/lib/
H A Dnet.js1987 mode |= PipeConstants.UV_WRITABLE;
/third_party/node/deps/uv/include/
H A Duv.h822 UV_WRITABLE = 2, enumerator

Completed in 30 milliseconds