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

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  538     m->lsan_tag = __lsan::DisabledInThisThread() ? __lsan::kIgnored
 1067     if (m->lsan_tag == kIgnored)
 1069     m->lsan_tag = __lsan::kIgnored;
projects/compiler-rt/lib/lsan/lsan_allocator.cpp
   57   m->tag = DisabledInThisThread() ? kIgnored : kDirectlyLeaked;
  297     if (m->tag == kIgnored)
  299     m->tag = kIgnored;
projects/compiler-rt/lib/lsan/lsan_common.cpp
  173     if (m.tag() == kReachable || m.tag() == kIgnored) continue;
  371   if (m.allocated() && m.tag() == kIgnored) {
  400   if (m.allocated() && m.tag() != kReachable && m.tag() != kIgnored) {
  477   if (m.allocated() && m.tag() != kIgnored)