Home
last modified time | relevance | path

Searched refs:GetHitCount (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dconcurrent_base.py50 lldbutil.get_description(bp), bp.GetHitCount())
55 lldbutil.get_description(watch), watch.GetHitCount())
84 return self.finish_breakpoint.GetHitCount() > 0 or \
232 self.finish_breakpoint.GetHitCount(),
257 breakpoint_hit_count = self.thread_breakpoint.GetHitCount(
275 watchpoint_hit_count = self.thread_watchpoint.GetHitCount(
H A Dlldbutil.py690 test.assertEquals(expected_hit_count, bkpt.GetHitCount())
697 test.assertEquals(expected_location_hit_count, loc_bkpt.GetHitCount())
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBWatchpoint.i63 GetHitCount ();
H A DSBBreakpointLocation.i52 GetHitCount ();
H A DSBBreakpoint.i134 GetHitCount () const;
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBWatchpoint.cpp171 uint32_t SBWatchpoint::GetHitCount() { in GetHitCount() function in SBWatchpoint
179 count = watchpoint_sp->GetHitCount(); in GetHitCount()
H A DSBBreakpointLocation.cpp122 uint32_t SBBreakpointLocation::GetHitCount() { in GetHitCount() function in SBBreakpointLocation
129 return loc_sp->GetHitCount(); in GetHitCount()
H A DSBBreakpoint.cpp318 uint32_t SBBreakpoint::GetHitCount() const { in GetHitCount() function in SBBreakpoint
326 count = bkpt_sp->GetHitCount(); in GetHitCount()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBWatchpoint.h51 uint32_t GetHitCount();
H A DSBBreakpointLocation.h42 uint32_t GetHitCount();
H A DSBBreakpoint.h65 uint32_t GetHitCount() const;
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DStoppointSite.h33 uint32_t GetHitCount() const { return m_hit_counter.GetValue(); } in GetHitCount() function
H A DBreakpointLocationList.h127 uint32_t GetHitCount() const;
H A DWatchpointList.h147 uint32_t GetHitCount() const;
H A DBreakpointLocation.h88 uint32_t GetHitCount() const { return m_hit_counter.GetValue(); } in GetHitCount() function
H A DBreakpoint.h331 uint32_t GetHitCount() const;
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DWatchpointList.cpp186 uint32_t WatchpointList::GetHitCount() const { in GetHitCount() function in WatchpointList
191 hit_count += (*pos)->GetHitCount(); in GetHitCount()
H A DBreakpointLocation.cpp606 s->Printf("hit count = %-4u\n", GetHitCount()); in GetDescription()
616 (is_hardware ? "hardware, " : ""), GetHitCount()); in GetDescription()
644 GetHitCount(), in Dump()
H A DBreakpointLocationList.cpp170 uint32_t BreakpointLocationList::GetHitCount() const { in GetHitCount() function in BreakpointLocationList
175 hit_count += (*pos)->GetHitCount(); in GetHitCount()
H A DBreakpointSite.cpp81 GetHardwareIndex(), GetHitCount()); in Dump()
H A DWatchpoint.cpp218 GetHardwareIndex(), GetHitCount(), GetIgnoreCount()); in DumpWithLevel()
H A DBreakpoint.cpp329 uint32_t Breakpoint::GetHitCount() const { return m_hit_counter.GetValue(); } in GetHitCount() function in Breakpoint
885 (uint64_t)num_resolved_locations, GetHitCount()); in GetDescription()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStopInfo.cpp921 if (wp_sp->GetHitCount() <= wp_sp->GetIgnoreCount()) { in PerformAction()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5395 breakpoint_location->GetHitCount()); in ComputeDetailsList()