Home
last modified time | relevance | path

Searched defs:QuarantineCallback (Results 1 – 4 of 4) sorted by relevance

/external/scudo/standalone/tests/
Dquarantine_test.cpp20 struct QuarantineCallback { struct
26 typedef scudo::GlobalQuarantine<QuarantineCallback, void> QuarantineT; argument
/external/compiler-rt/lib/scudo/
Dscudo_allocator.cpp205 struct QuarantineCallback { struct
206 explicit QuarantineCallback(AllocatorCache *Cache) in QuarantineCallback() argument
210 void Recycle(ScudoChunk *Chunk) { in Recycle()
222 void *Allocate(uptr Size) { in Allocate()
234 void Deallocate(void *Ptr) { in Deallocate()
239 AllocatorCache *Cache_;
/external/compiler-rt/lib/asan/
Dasan_allocator.cc131 struct QuarantineCallback { struct
132 explicit QuarantineCallback(AllocatorCache *cache) in QuarantineCallback() function
136 void Recycle(AsanChunk *m) { in Recycle()
162 void *Allocate(uptr size) { in Allocate()
166 void Deallocate(void *p) { in Deallocate()
170 AllocatorCache *cache_;
/external/scudo/standalone/
Dcombined.h58 struct QuarantineCallback { struct
59 explicit QuarantineCallback(ThisT &Instance, CacheT &LocalCache) in QuarantineCallback() argument
64 void recycle(void *Ptr) { in recycle()
83 void *allocate(UNUSED uptr Size) { in allocate()
108 void deallocate(void *Ptr) { in deallocate()
133 typedef GlobalQuarantine<QuarantineCallback, void> QuarantineT; argument