Home | History | Annotate | Download | only in libevent

Lines Matching defs:nfds

64 	int nfds;
169 devpollop->nfds = nfiles;
190 if (max >= devpollop->nfds) {
192 int nfds;
194 nfds = devpollop->nfds;
195 while (nfds <= max)
196 nfds <<= 1;
198 fds = realloc(devpollop->fds, nfds * sizeof(struct evdevpoll));
204 memset(fds + devpollop->nfds, 0,
205 (nfds - devpollop->nfds) * sizeof(struct evdevpoll));
206 devpollop->nfds = nfds;
252 assert(events[i].fd < devpollop->nfds);
300 if (fd >= devpollop->nfds) {
355 if (fd >= devpollop->nfds)