Lines Matching defs:nfds
53 uintptr_t nfds;
59 nfds = (uintptr_t) loop->watchers[loop->nwatchers + 1];
62 for (i = 0; i < nfds; i++)
129 int nfds;
136 if (loop->nfds == 0) {
226 nfds = epoll_pwait(loop->backend_fd,
231 if (nfds == -1 && errno == ENOSYS) {
236 nfds = epoll_wait(loop->backend_fd,
240 if (nfds == -1 && errno == ENOSYS) {
256 if (nfds == 0) {
276 if (nfds == -1) {
314 loop->watchers[loop->nwatchers + 1] = (void*) (uintptr_t) nfds;
317 for (i = 0; i < nfds; i++) {
398 if (nfds == ARRAY_SIZE(events) && --count != 0) {