Home
last modified time | relevance | path

Searched refs:uv_poll_start (Results 1 – 20 of 20) sorted by relevance

/third_party/libuv/test/
Dtest-poll.c286 uv_poll_start(&context->poll_handle, UV_WRITABLE, connection_poll_cb);
287 uv_poll_start(&context->poll_handle, UV_READABLE, connection_poll_cb);
385 uv_poll_start(&context->poll_handle,
388 uv_poll_start(&context->poll_handle,
430 uv_poll_start(handle, new_events, connection_poll_cb);
454 r = uv_poll_start(&context->poll_handle,
510 r = uv_poll_start(&connection_context->poll_handle,
535 r = uv_poll_start(&context->poll_handle, UV_READABLE, server_poll_cb);
554 r = uv_poll_start(&context->poll_handle,
664 ASSERT(0 == uv_poll_start(&poll_handle, UV_READABLE, (uv_poll_cb) abort));
[all …]
Dtest-poll-multiple-handles.c67 ASSERT(0 == uv_poll_start(&first_poll_handle, UV_READABLE, poll_cb)); in TEST_IMPL()
76 ASSERT(uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb) == UV_EEXIST); in TEST_IMPL()
81 ASSERT(0 == uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb)); in TEST_IMPL()
Dtest-poll-closesocket.c45 r = uv_poll_start(&handle, UV_READABLE, poll_cb); in poll_cb()
82 r = uv_poll_start(&handle, UV_WRITABLE, poll_cb); in TEST_IMPL()
Dtest-poll-oob.c83 ASSERT(0 == uv_poll_start(&poll_req[0], in poll_cb()
143 ASSERT(0 == uv_poll_start(&poll_req[0], in connection_cb()
146 ASSERT(0 == uv_poll_start(&poll_req[1], in connection_cb()
Dtest-poll-close.c60 uv_poll_start(&poll_handles[i], UV_READABLE | UV_WRITABLE, NULL); in TEST_IMPL()
Dtest-poll-close-doesnt-corrupt-stack.c99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb); in TEST_IMPL()
Dtest-fork.c145 ASSERT(0 == uv_poll_start(&poll_handle, UV_READABLE, socket_cb)); in TEST_IMPL()
175 ASSERT(0 == uv_poll_start(&poll_handle, UV_READABLE, socket_cb)); in TEST_IMPL()
/third_party/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/
Dgrpc_ares_ev_driver_libuv.cc61 uv_poll_start(handle_, poll_events_, ares_uv_poll_cb); in RegisterForOnReadableLocked()
69 uv_poll_start(handle_, poll_events_, ares_uv_poll_cb); in RegisterForOnWriteableLocked()
149 uv_poll_start(handle, polled_fd->poll_events_, ares_uv_poll_cb); in ares_uv_poll_cb_locked()
/third_party/libuv/docs/code/uvwget/
Dmain.c123 uv_poll_start(&curl_context->poll_handle, UV_READABLE, curl_perform); in handle_socket()
126 uv_poll_start(&curl_context->poll_handle, UV_WRITABLE, curl_perform); in handle_socket()
/third_party/libuv/docs/src/
Dpoll.rst46 Type definition for callback passed to :c:func:`uv_poll_start`.
86 .. c:function:: int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb)
107 Calling :c:func:`uv_poll_start` on a handle that is already active is
128 :c:func:`uv_poll_start` on a poll handle associated with this socket,
/third_party/libuv/src/unix/
Dpoll.c119 int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) { in uv_poll_start() function
/third_party/curl/docs/examples/
Dmulti-uv.c193 uv_poll_start(&curl_context->poll_handle, events, curl_perform); in handle_socket()
/third_party/node/deps/uvwasi/src/
Dpoll_oneoff.c224 r = uv_poll_start(poll_handle, in uvwasi__poll_oneoff_state_add_fdevent()
/third_party/libwebsockets/lib/event-libs/libuv/
Dlibuv.c575 uv_poll_start(w->pwatcher, current_events, lws_io_cb); in elops_io_uv()
586 uv_poll_start(w->pwatcher, current_events, lws_io_cb); in elops_io_uv()
/third_party/libuv/src/win/
Dpoll.c519 int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb) { in uv_poll_start() function
/third_party/libuv/docs/src/guide/
Dutilities.rst274 whenever the socket is ready for reading or writing. Calling ``uv_poll_start``
/third_party/libuv/include/
Duv.h831 UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
/third_party/libuv/include/uv_ndk/
Duv.h818 UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
/third_party/node/src/
Dcares_wrap.cc139 uv_poll_start(&task->poll_watcher, in ares_sockstate_cb()
/third_party/libuv/
DChangeLog604 * win: DRY uv_poll_start() and uv_poll_stop() (Ben Noordhuis)
2616 * unix: allow nesting of kqueue fds in uv_poll_start (Ben Noordhuis)