Searched refs:m_hit_count (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DStoppointLocation.cpp18 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(0), m_hit_count(0) {}
24 m_hit_count(0) {}
30 assert(m_hit_count > 0);
31 --m_hit_count;
H A DWatchpoint.cpp126 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;
H A DBreakpoint.cpp54 m_resolve_indirect_symbols(resolve_indirect_symbols), m_hit_count(0) {
64 m_hit_count(0) {}
345 uint32_t Breakpoint::GetHitCount() const { return m_hit_count; }
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h37 uint32_t GetHitCount() const { return m_hit_count; }
70 m_hit_count; // Number of times this breakpoint/watchpoint has been hit member in class:lldb_private::StoppointLocation
74 void IncrementHitCount() { ++m_hit_count; }
H A DBreakpoint.h627 void IncrementHitCount() { m_hit_count++; }
630 assert(m_hit_count > 0);
631 m_hit_count--;
663 uint32_t m_hit_count; // Number of times this breakpoint/watchpoint has been member in class:lldb_private::Breakpoint
H A DWatchpoint.h161 void ResetHitCount() { m_hit_count = 0; }

Completed in 119 milliseconds