Home
last modified time | relevance | path

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

/libuv/test/
H A Dtest-poll-multiple-handles.c71 ASSERT_OK(uv_poll_start(&first_poll_handle, UV_READABLE, poll_cb)); in TEST_IMPL()
80 ASSERT_EQ(uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb), in TEST_IMPL()
86 ASSERT_OK(uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb)); in TEST_IMPL()
H A Dtest-poll.c287 uv_poll_start(&context->poll_handle, UV_WRITABLE, connection_poll_cb);
288 uv_poll_start(&context->poll_handle, UV_READABLE, connection_poll_cb);
386 uv_poll_start(&context->poll_handle,
389 uv_poll_start(&context->poll_handle,
431 uv_poll_start(handle, new_events, connection_poll_cb);
455 r = uv_poll_start(&context->poll_handle,
511 r = uv_poll_start(&connection_context->poll_handle,
536 r = uv_poll_start(&context->poll_handle, UV_READABLE, server_poll_cb);
555 r = uv_poll_start(&context->poll_handle,
698 ASSERT_OK(uv_poll_start(&poll_handle, UV_READABLE, (uv_poll_cb) abort));
[all …]
H A 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()
H A Dtest-poll-oob.c83 ASSERT_OK(uv_poll_start(&poll_req[0], in poll_cb()
147 ASSERT_OK(uv_poll_start(&poll_req[0], in connection_cb()
150 ASSERT_OK(uv_poll_start(&poll_req[1], 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-close-doesnt-corrupt-stack.c99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb); in TEST_IMPL()
H A Dtest-fork.c158 ASSERT_OK(uv_poll_start(&poll_handle, UV_READABLE, socket_cb)); in TEST_IMPL()
188 ASSERT_OK(uv_poll_start(&poll_handle, UV_READABLE, socket_cb)); in TEST_IMPL()
/libuv/docs/code/uvwget/
H A 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()
/libuv/docs/src/
H A 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)
109 Calling :c:func:`uv_poll_start` on a handle that is already active is
130 :c:func:`uv_poll_start` on a poll handle associated with this socket,
/libuv/src/unix/
H A Dpoll.c119 int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) { in uv_poll_start() function
/libuv/src/win/
H A Dpoll.c518 int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb) { in uv_poll_start() function
/libuv/docs/src/guide/
H A Dutilities.rst274 whenever the socket is ready for reading or writing. Calling ``uv_poll_start``
/libuv/include/
H A Duv.h903 UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
/libuv/
H A DChangeLog1535 * win: DRY uv_poll_start() and uv_poll_stop() (Ben Noordhuis)
3547 * unix: allow nesting of kqueue fds in uv_poll_start (Ben Noordhuis)

Completed in 42 milliseconds