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

12

  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
file.h 31 unsigned int max_fds; member in struct:fdtable
  /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)) {
  /development/tools/emulator/system/qemud/
qemud.c 336 int max_fds; member in struct:__anon1461
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...]
  /sdk/emulator/qemud/
qemud.c 336 int max_fds; member in struct:__anon36099
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 174 milliseconds

12