Home
last modified time | relevance | path

Searched refs:QuarantineCache (Results 1 – 5 of 5) sorted by relevance

/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h25 template<typename Node> class QuarantineCache; variable
74 typedef QuarantineCache<Callback> Cache;
197 class QuarantineCache {
199 explicit QuarantineCache(LinkerInitialized) { in QuarantineCache() function
202 QuarantineCache() in QuarantineCache() function
229 void Transfer(QuarantineCache *from_cache) { in Transfer()
250 void MergeBatches(QuarantineCache *to_deallocate) { in MergeBatches()
/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd.h77 return QuarantineCache; in getQuarantineCache()
85 typename Allocator::QuarantineCacheT QuarantineCache GUARDED_BY(Mutex);
H A Dquarantine.h66 template <typename Callback> class QuarantineCache {
88 void transfer(QuarantineCache *From) { in transfer()
108 void mergeBatches(QuarantineCache *ToDeallocate) { in mergeBatches()
173 typedef QuarantineCache<Callback> CacheT;
/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp281 typedef AsanQuarantine::Cache QuarantineCache;
325 QuarantineCache *GetQuarantineCache(AsanThreadLocalMallocStorage *ms) { in GetQuarantineCache()
327 CHECK_LE(sizeof(QuarantineCache), sizeof(ms->quarantine_cache)); in GetQuarantineCache()
328 return reinterpret_cast<QuarantineCache *>(ms->quarantine_cache); in GetQuarantineCache()
359 QuarantineCache fallback_quarantine_cache;
280 typedef AsanQuarantine::Cache QuarantineCache; global() typedef
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_quarantine_test.cpp30 typedef QuarantineCache<QuarantineCallback> Cache;