Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp210 struct QuarantineCallback { struct
211 QuarantineCallback(AllocatorCache *cache, BufferedStackTrace *stack) in QuarantineCallback() function
216 void PreQuarantine(AsanChunk *m) const { in PreQuarantine()
223 void Recycle(AsanChunk *m) const { in Recycle()
254 void RecyclePassThrough(AsanChunk *m) const { in RecyclePassThrough()
264 void *Allocate(uptr size) const { in Allocate()
272 void Deallocate(void *p) const { get_allocator().Deallocate(cache_, p); } in Deallocate()
275 AllocatorCache* const cache_;
276 BufferedStackTrace* const stack_;
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h59 struct QuarantineCallback { struct
60 explicit QuarantineCallback(ThisT &Instance, CacheT &LocalCache) in QuarantineCallback() function
65 void recycle(void *Ptr) { in recycle()
83 void *allocate(UNUSED uptr Size) { in allocate()
108 void deallocate(void *Ptr) { in deallocate()
132 typedef GlobalQuarantine<QuarantineCallback, void> QuarantineT; argument