reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
   38     void __sanitizer_free_hook(void *ptr);

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  626     ASAN_FREE_HOOK(ptr);
projects/compiler-rt/lib/hwasan/hwasan_allocator.cpp
  184   HWASAN_FREE_HOOK(tagged_ptr);
projects/compiler-rt/lib/lsan/lsan_allocator.cpp
  111   if (&__sanitizer_free_hook) __sanitizer_free_hook(p);
  111   if (&__sanitizer_free_hook) __sanitizer_free_hook(p);
projects/compiler-rt/lib/msan/msan_allocator.cpp
  177   MSAN_FREE_HOOK(p);
projects/compiler-rt/lib/scudo/scudo_allocator.cpp
  451     if (SCUDO_CAN_USE_HOOKS && &__sanitizer_free_hook)
  452       __sanitizer_free_hook(Ptr);
projects/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
  329   __sanitizer_free_hook(ptr);