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

Declarations

projects/compiler-rt/lib/lsan/lsan_common.h
  246   ChunkTag tag() const;

References

projects/compiler-rt/lib/lsan/lsan_common.cpp
  173     if (m.tag() == kReachable || m.tag() == kIgnored) continue;
  173     if (m.tag() == kReachable || m.tag() == kIgnored) continue;
  359   if (m.allocated() && m.tag() != kReachable) {
  371   if (m.allocated() && m.tag() == kIgnored) {
  400   if (m.allocated() && m.tag() != kReachable && m.tag() != kIgnored) {
  400   if (m.allocated() && m.tag() != kReachable && m.tag() != kIgnored) {
  477   if (m.allocated() && m.tag() != kIgnored)
  494   if (m.tag() == kDirectlyLeaked || m.tag() == kIndirectlyLeaked) {
  494   if (m.tag() == kDirectlyLeaked || m.tag() == kIndirectlyLeaked) {
  505                                 m.tag());