HomeSort by: relevance | last modified time | path
    Searched refs:Quarantine (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_quarantine.h 10 // Memory quarantine for AddressSanitizer and potentially other tools.
11 // Quarantine caches some specified amount of memory in per-thread caches,
77 class Quarantine {
81 explicit Quarantine(LinkerInitialized)
86 // Thread local quarantine size can be zero only when global quarantine size
136 Printf("Quarantine limits: global: %zdMb; thread local: %zdKb\n",
159 // by them is counted against quarantine limit) can overcome the actual
161 // quarantine.
167 // quarantine is unlikely to contain batches suitable for merge
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc 107 // CHUNK_QUARANTINE: the chunk was freed and put into quarantine zone.
170 // TODO(alekseys): Consider making quarantine OOM-friendly.
185 typedef Quarantine<QuarantineCallback, AsanChunk> AsanQuarantine;
245 AsanQuarantine quarantine; member in struct:__asan::Allocator
259 : quarantine(LINKER_INITIALIZED),
272 quarantine.Init((uptr)options.quarantine_size_mb << 20,
335 options->quarantine_size_mb = quarantine.GetSize() >> 20;
336 options->thread_local_quarantine_size_kb = quarantine.GetCacheSize() >> 10;
548 // Set quarantine flag if chunk is allocated, issue ASan error report on
558 // It's not safe to push a chunk in quarantine on invalid free
    [all...]

Completed in 12 milliseconds