Lines Matching defs:maxnfds
93 ctx->maxnfds = 0;
817 int i, maxnfds;
820 if (fd < ctx->maxnfds)
827 maxnfds = (1 + (fd/pollfd_chunk_size)) * pollfd_chunk_size;
829 pollfds = realloc(ctx->pollfds, maxnfds * sizeof(*ctx->pollfds));
832 fdTable = realloc(ctx->fdTable, maxnfds * sizeof(*ctx->fdTable));
838 (long)maxnfds*sizeof(struct pollfd));
842 for (i = ctx->maxnfds; i < maxnfds; i++) {
848 ctx->maxnfds = maxnfds;