Searched refs:uv__io_active (Results 1 – 4 of 4) sorted by relevance
/third_party/libuv/src/unix/ |
D | stream.c | 162 if (uv__io_active(&stream->io_watcher, POLLIN)) in uv__stream_osx_select() 164 if (uv__io_active(&stream->io_watcher, POLLOUT)) in uv__stream_osx_select() 239 if ((events & POLLIN) && uv__io_active(&stream->io_watcher, POLLIN)) in uv__stream_osx_select_cb() 242 if ((events & POLLOUT) && uv__io_active(&stream->io_watcher, POLLOUT)) in uv__stream_osx_select_cb() 445 assert(!uv__io_active(&stream->io_watcher, POLLIN | POLLOUT)); in uv__stream_destroy() 1665 assert(!uv__io_active(&handle->io_watcher, POLLIN | POLLOUT)); in uv__stream_close()
|
D | udp.c | 103 assert(!uv__io_active(&handle->io_watcher, POLLIN | POLLOUT)); in uv__udp_finish_close() 163 if (!uv__io_active(&handle->io_watcher, POLLIN)) in uv__udp_run_completed() 1380 if (uv__io_active(&handle->io_watcher, POLLIN)) in uv__udp_recv_start() 1400 if (!uv__io_active(&handle->io_watcher, POLLOUT)) in uv__udp_recv_stop()
|
D | internal.h | 214 int uv__io_active(const uv__io_t* w, unsigned int events);
|
D | core.c | 942 int uv__io_active(const uv__io_t* w, unsigned int events) { in uv__io_active() function
|