Searched defs:QuarantineCache (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h26 template<typename Node> class QuarantineCache;
43 typedef QuarantineCache<Callback> Cache;
111 class QuarantineCache { class in namespace:__sanitizer
113 explicit QuarantineCache(LinkerInitialized) { function in class:__sanitizer::QuarantineCache
116 QuarantineCache() function in class:__sanitizer::QuarantineCache
134 void Transfer(QuarantineCache *c) {
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc254 typedef AsanQuarantine::Cache QuarantineCache; typedef in namespace:__asan
256 static QuarantineCache fallback_quarantine_cache(LINKER_INITIALIZED);
260 QuarantineCache *GetQuarantineCache(AsanThreadLocalMallocStorage *ms) {
262 CHECK_LE(sizeof(QuarantineCache), sizeof(ms->quarantine_cache));
263 return reinterpret_cast<QuarantineCache *>(ms->quarantine_cache);

Completed in 198 milliseconds