/netbsd-src/external/mit/libuv/dist/test/ |
H A D | test-poll.c | 286 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 …]
|
H A D | test-poll-multiple-handles.c | 67 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()
|
H A D | test-poll-oob.c | 83 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()
|
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-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 | 145 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()
|
/netbsd-src/external/mit/libuv/dist/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) 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,
|
/netbsd-src/external/mit/libuv/dist/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()
|
/netbsd-src/external/mit/libuv/dist/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
|
/netbsd-src/external/mit/libuv/dist/src/win/ |
H A D | poll.c | 519 int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb) { in uv_poll_start() function
|
/netbsd-src/external/mit/libuv/dist/docs/src/guide/ |
H A D | utilities.rst | 274 whenever the socket is ready for reading or writing. Calling ``uv_poll_start``
|
/netbsd-src/external/mit/libuv/dist/include/ |
H A D | uv.h | 831 UV_EXTERN int uv_poll_start(uv_poll_t* handle, int events, uv_poll_cb cb);
|
/netbsd-src/external/mit/libuv/dist/ |
H A D | ChangeLog | 732 * win: DRY uv_poll_start() and uv_poll_stop() (Ben Noordhuis) 2744 * unix: allow nesting of kqueue fds in uv_poll_start (Ben Noordhuis)
|