Searched refs:uv__io_active (Results 1 – 4 of 4) sorted by relevance
/libuv/src/unix/ |
H A D | stream.c | 173 if (uv__io_active(&stream->io_watcher, POLLIN)) in uv__stream_osx_select() 175 if (uv__io_active(&stream->io_watcher, POLLOUT)) in uv__stream_osx_select() 250 if ((events & POLLIN) && uv__io_active(&stream->io_watcher, POLLIN)) in uv__stream_osx_select_cb() 253 if ((events & POLLOUT) && uv__io_active(&stream->io_watcher, POLLOUT)) in uv__stream_osx_select_cb() 456 assert(!uv__io_active(&stream->io_watcher, POLLIN | POLLOUT)); in uv__stream_destroy() 1558 assert(!uv__io_active(&handle->io_watcher, POLLIN | POLLOUT)); in uv__stream_close()
|
H A D | udp.c | 67 assert(!uv__io_active(&handle->io_watcher, POLLIN | POLLOUT)); in uv__udp_finish_close() 127 if (!uv__io_active(&handle->io_watcher, POLLIN)) in uv__udp_run_completed() 1376 if (uv__io_active(&handle->io_watcher, POLLIN)) in uv__udp_recv_start() 1396 if (!uv__io_active(&handle->io_watcher, POLLOUT)) in uv__udp_recv_stop()
|
H A D | internal.h | 264 int uv__io_active(const uv__io_t* w, unsigned int events);
|
H A D | core.c | 990 int uv__io_active(const uv__io_t* w, unsigned int events) { in uv__io_active() function
|
Completed in 21 milliseconds