Searched refs:uv_poll_start (Results 1 – 14 of 14) sorted by relevance
/libuv/test/ |
H A D | test-poll-multiple-handles.c | 71 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 D | test-poll.c | 287 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 D | test-poll-closesocket.c | 45 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 D | test-poll-oob.c | 83 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 D | test-poll-close.c | 60 uv_poll_start(&poll_handles[i], UV_READABLE | UV_WRITABLE, NULL); in TEST_IMPL()
|
H A D | test-poll-close-doesnt-corrupt-stack.c | 99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb); in TEST_IMPL()
|
H A D | test-fork.c | 158 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 D | main.c | 123 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 D | poll.rst | 46 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 D | poll.c | 119 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 D | poll.c | 518 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 D | utilities.rst | 274 whenever the socket is ready for reading or writing. Calling ``uv_poll_start``
|
/libuv/include/ |
H A D | uv.h | 903 UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
|
/libuv/ |
H A D | ChangeLog | 1535 * 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 54 milliseconds