Searched refs:nofile (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/base/process/
H A Dprocess_metrics_ios.cc50 struct rlimit nofile; local
51 if (getrlimit(RLIMIT_NOFILE, &nofile)) {
55 max_fds = nofile.rlim_cur;
H A Dprocess_metrics_posix.cc40 struct rlimit nofile; local
41 if (getrlimit(RLIMIT_NOFILE, &nofile)) {
46 max_fds = nofile.rlim_cur;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jmf.jar ... .Random rn int x java.io.File nofile public int getLoops () public java.lang.Long getDuration ...
/external/chromium_org/sandbox/linux/suid/
H A Dsandbox.c112 const struct rlimit nofile = {0, 0}; local
113 if (setrlimit(RLIMIT_NOFILE, &nofile))
/external/elfutils/0.153/libdwfl/
H A Dargp-std.c187 nofile:
216 goto nofile;
/external/chromium_org/third_party/leveldatabase/
H A Denv_chromium_stdio.cc278 struct rlimit nofile; local
279 if (getrlimit(RLIMIT_NOFILE, &nofile))
281 GetMaxFDHistogram(type)->Add(nofile.rlim_cur);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.cc98 struct rlimit nofile; local
99 if (!getrlimit(RLIMIT_NOFILE, &nofile)) {
100 soft_fd_limit = nofile.rlim_cur;
101 hard_fd_limit = nofile.rlim_max;

Completed in 689 milliseconds