Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h25 template<typename Node> class QuarantineCache; variable
78 typedef QuarantineCache<Callback> Cache;
202 class QuarantineCache {
204 explicit QuarantineCache(LinkerInitialized) { in QuarantineCache() function
207 QuarantineCache() in QuarantineCache() function
234 void Transfer(QuarantineCache *from_cache) { in Transfer()
255 void MergeBatches(QuarantineCache *to_deallocate) { in MergeBatches()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h65 template <typename Callback> class QuarantineCache {
87 void transfer(QuarantineCache *From) { in transfer()
107 void mergeBatches(QuarantineCache *ToDeallocate) { in mergeBatches()
172 typedef QuarantineCache<Callback> CacheT;
H A Dtsd.h28 typename Allocator::QuarantineCacheT QuarantineCache; in alignas() local
H A Dcombined.h244 Quarantine.drain(&TSD->QuarantineCache, in commitBack()
1133 Quarantine.put(&TSD->QuarantineCache, in quarantineOrDeallocateChunk()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_allocator.cpp242 typedef AsanQuarantine::Cache QuarantineCache; typedef
270 QuarantineCache *GetQuarantineCache(AsanThreadLocalMallocStorage *ms) { in GetQuarantineCache()
272 CHECK_LE(sizeof(QuarantineCache), sizeof(ms->quarantine_cache)); in GetQuarantineCache()
273 return reinterpret_cast<QuarantineCache *>(ms->quarantine_cache); in GetQuarantineCache()
304 QuarantineCache fallback_quarantine_cache;
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_quarantine_test.cpp30 typedef QuarantineCache<QuarantineCallback> Cache;