Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBWatchpoint.cpp151 uint32_t SBWatchpoint::GetHitCount() { in GetHitCount() function in SBWatchpoint
157 count = watchpoint_sp->GetHitCount(); in GetHitCount()
H A DSBBreakpointLocation.cpp104 uint32_t SBBreakpointLocation::GetHitCount() { in GetHitCount() function in SBBreakpointLocation
109 return loc_sp->GetHitCount(); in GetHitCount()
H A DSBBreakpoint.cpp271 uint32_t SBBreakpoint::GetHitCount() const { in GetHitCount() function in SBBreakpoint
277 count = bkpt_sp->GetHitCount(); in GetHitCount()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h44 uint32_t GetHitCount() const { return m_hit_count; } in GetHitCount() function
H A DWatchpointList.h172 uint32_t GetHitCount() const;
H A DBreakpointLocationList.h152 uint32_t GetHitCount() const;
H A DBreakpoint.h391 uint32_t GetHitCount() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBWatchpoint.h46 uint32_t GetHitCount();
H A DSBBreakpointLocation.h41 uint32_t GetHitCount();
H A DSBBreakpoint.h62 uint32_t GetHitCount() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp607 s->Printf("hit count = %-4u\n", GetHitCount()); in GetDescription()
617 GetHitCount()); in GetDescription()
639 IsHardware() ? "hardware" : "software", GetHardwareIndex(), GetHitCount(), in Dump()
H A DWatchpointList.cpp188 uint32_t WatchpointList::GetHitCount() const { in GetHitCount() function in WatchpointList
193 hit_count += (*pos)->GetHitCount(); in GetHitCount()
H A DBreakpointLocationList.cpp172 uint32_t BreakpointLocationList::GetHitCount() const { in GetHitCount() function in BreakpointLocationList
177 hit_count += (*pos)->GetHitCount(); in GetHitCount()
H A DBreakpointSite.cpp74 GetHardwareIndex(), GetHitCount()); in Dump()
H A DWatchpoint.cpp206 GetHardwareIndex(), GetHitCount(), GetIgnoreCount()); in DumpWithLevel()
H A DBreakpoint.cpp338 uint32_t Breakpoint::GetHitCount() const { return m_hit_count; } in GetHitCount() function in Breakpoint
898 (uint64_t)num_resolved_locations, GetHitCount()); in GetDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdCmdBreak.cpp298 sBrkPtInfo.m_nTimes = m_brkPt.GetHitCount(); in Execute()
H A DMICmnLLDBDebuggerHandleEvents.cpp341 sBrkPtInfo.m_nTimes = brkPt.GetHitCount(); in HandleEventSBBreakpointCmn()
421 sBrkPtInfo.m_nTimes = brkPt.GetHitCount(); in HandleEventSBBreakpointAdded()
H A DMICmnLLDBDebugSessionInfo.cpp836 vrwBrkPtInfo.m_nTimes = vBrkPt.GetHitCount(); in GetBrkPtInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp794 if (wp_sp->GetHitCount() <= wp_sp->GetIgnoreCount()) in PerformAction()