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

References

tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
   37   uint32_t GetHitCount() const { return m_hit_count; }
   74   void IncrementHitCount() { ++m_hit_count; }
tools/lldb/include/lldb/Breakpoint/Watchpoint.h
  165   void ResetHitCount() { m_hit_count = 0; }
tools/lldb/source/Breakpoint/StoppointLocation.cpp
   30   assert(m_hit_count > 0);
   31   --m_hit_count;
tools/lldb/source/Breakpoint/Watchpoint.cpp
  126     if (m_hit_count >= m_false_alarms) {
  127       m_hit_count -= m_false_alarms;
  130       m_false_alarms -= m_hit_count;
  131       m_hit_count = 0;