Searched refs:mmap_limit_mb (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc251 if (!common_flags()->mmap_limit_mb) return;
254 if ((total_mmaped >> 20) > common_flags()->mmap_limit_mb) {
255 // Since for now mmap_limit_mb is not a user-facing flag, just CHECK.
256 uptr mmap_limit_mb = common_flags()->mmap_limit_mb; local
257 common_flags()->mmap_limit_mb = 0; // Allow mmap in CHECK.
258 RAW_CHECK(total_mmaped >> 20 < mmap_limit_mb);
263 if (!common_flags()->mmap_limit_mb) return;
H A Dsanitizer_flags.h55 uptr mmap_limit_mb; member in struct:__sanitizer::CommonFlags
H A Dsanitizer_flags.cc131 ParseFlag(str, &f->mmap_limit_mb, "mmap_limit_mb",

Completed in 341 milliseconds