Searched refs:ev (Results 1 – 6 of 6) sorted by relevance
/libuv/src/unix/ |
H A D | kqueue.c | 100 struct kevent ev[2]; in uv__io_check_fd() local 147 EV_SET(&change, ev->ident, ev->filter, EV_DELETE, 0, 0, 0); in uv__kqueue_delete() 162 struct kevent* ev; in uv__io_poll() local 336 ev = events + i; in uv__io_poll() 337 fd = ev->ident; in uv__io_poll() 340 if (ev->filter == EVFILT_PROC) { in uv__io_poll() 365 if (ev->filter == EVFILT_USER) { in uv__io_poll() 386 if (ev->filter == EVFILT_READ) { in uv__io_poll() 396 if (ev->filter == EV_OOBAND) { in uv__io_poll() 410 if (ev->flags & EV_ERROR) in uv__io_poll() [all …]
|
H A D | async.c | 48 struct kevent ev[2]; in uv__kqueue_runtime_detection() local 54 EV_SET(ev, UV__KQUEUE_EVFILT_USER_IDENT, EVFILT_USER, in uv__kqueue_runtime_detection() 56 EV_SET(ev + 1, UV__KQUEUE_EVFILT_USER_IDENT, EVFILT_USER, in uv__kqueue_runtime_detection() 58 if (kevent(kq, ev, 2, ev, 1, &timeout) < 1 || in uv__kqueue_runtime_detection() 59 ev[0].filter != EVFILT_USER || in uv__kqueue_runtime_detection() 60 ev[0].ident != UV__KQUEUE_EVFILT_USER_IDENT || in uv__kqueue_runtime_detection() 61 ev[0].flags & EV_ERROR) in uv__kqueue_runtime_detection() 231 struct kevent ev; local 235 EV_SET(&ev, fd, EVFILT_USER, 0, NOTE_TRIGGER, 0, 0); 236 r = kevent(loop->backend_fd, &ev, 1, NULL, 0, NULL); [all …]
|
H A D | os390-syscalls.c | 327 struct epoll_event ev; in epoll_wait() local 334 ev.fd = pfd->fd; in epoll_wait() 335 ev.events = pfd->revents; in epoll_wait() 336 ev.is_msg = 0; in epoll_wait() 339 events[nevents++] = ev; in epoll_wait() 343 struct epoll_event ev; in epoll_wait() local 344 ev.fd = msg_fd.fd; in epoll_wait() 345 ev.events = msg_fd.revents; in epoll_wait() 346 ev.is_msg = 1; in epoll_wait() 347 events[nevents++] = ev; in epoll_wait()
|
/libuv/docs/src/guide/ |
H A D | about.rst | 13 <http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod>`_ about libev which
|
H A D | filesystem.rst | 276 .. _aborting on receiving a SIGPIPE: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#The_speci…
|
H A D | utilities.rst | 450 .. _libev man page: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#COMMON_OR_USEFUL_IDIOMS_OR…
|
Completed in 11 milliseconds