HomeSort by relevance Sort by last modified time
    Searched defs:max_fds (Results 51 - 52 of 52) sorted by null

1 23

  /external/chromium/base/
process_util_posix.cc 311 rlim_t max_fds; local
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)) {
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 336 int max_fds; member in struct:__anon1993
347 l->max_fds = 0;
358 l->max_fds = 0;
385 int old_max = l->max_fds;
391 l->max_fds = new_max;
413 if (l->num_fds >= l->max_fds)
    [all...]

Completed in 77 milliseconds

1 23