Home
last modified time | relevance | path

Searched refs:nofile (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/base/process/
Dprocess_metrics_posix.cc40 struct rlimit nofile; in GetMaxFds() local
41 if (getrlimit(RLIMIT_NOFILE, &nofile)) { in GetMaxFds()
46 max_fds = nofile.rlim_cur; in GetMaxFds()
Dprocess_metrics_ios.cc50 struct rlimit nofile; in GetMaxFds() local
51 if (getrlimit(RLIMIT_NOFILE, &nofile)) { in GetMaxFds()
55 max_fds = nofile.rlim_cur; in GetMaxFds()
/external/elfutils/libdwfl/
Dargp-std.c187 nofile: in parse_opt()
216 goto nofile; in parse_opt()
/external/chromium_org/sandbox/linux/suid/
Dsandbox.c115 const struct rlimit nofile = {0, 0}; in SpawnChrootHelper() local
116 if (setrlimit(RLIMIT_NOFILE, &nofile)) in SpawnChrootHelper()
/external/chromium_org/net/disk_cache/simple/
Dsimple_backend_impl.cc100 struct rlimit nofile; in MaybeHistogramFdLimit() local
101 if (!getrlimit(RLIMIT_NOFILE, &nofile)) { in MaybeHistogramFdLimit()
102 soft_fd_limit = nofile.rlim_cur; in MaybeHistogramFdLimit()
103 hard_fd_limit = nofile.rlim_max; in MaybeHistogramFdLimit()
/external/chromium_org/third_party/sqlite/src/test/
Dattach3.test240 ATTACH DATABASE '/nodir/nofile.x' AS notadb;
242 } {1 {unable to open database: /nodir/nofile.x}}
/external/chromium/base/
Dprocess_util_posix.cc310 struct rlimit nofile; in CloseSuperfluousFds() local
312 if (getrlimit(RLIMIT_NOFILE, &nofile)) { in CloseSuperfluousFds()
317 max_fds = nofile.rlim_cur; in CloseSuperfluousFds()
/external/chromium_org/third_party/leveldatabase/
Denv_chromium.cc645 struct rlimit nofile; in RecordOpenFilesLimit() local
646 if (getrlimit(RLIMIT_NOFILE, &nofile)) in RecordOpenFilesLimit()
648 GetMaxFDHistogram(type)->Add(nofile.rlim_cur); in RecordOpenFilesLimit()