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

Declarations

projects/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  137 bool DontDumpShadowMemory(uptr addr, uptr length);

References

projects/compiler-rt/lib/asan/asan_shadow_setup.cpp
   40   if (common_flags()->use_madv_dontdump) DontDumpShadowMemory(beg, size);
projects/compiler-rt/lib/hwasan/hwasan_linux.cpp
  255     DontDumpShadowMemory(beg, size);
projects/compiler-rt/lib/msan/msan_linux.cpp
  148         DontDumpShadowMemory(start, size);
projects/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
   38     if (!DontDumpShadowMemory(addr, size)) {