Home | History | Annotate | Download | only in base

Lines Matching refs:max_fds

311   rlim_t max_fds;
314 max_fds = kSystemDefaultMaxFds;
317 max_fds = nofile.rlim_cur;
320 if (max_fds > INT_MAX)
321 max_fds = INT_MAX;
327 for (rlim_t i = 0; i < max_fds; ++i) {
372 // these FDs are >= |max_fds|, so we can check against that here
374 if (fd < static_cast<int>(max_fds)) {