Home
last modified time | relevance | path

Searched refs:GetIgnoreCount (Results 1 – 23 of 23) sorted by relevance

/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp335 uint32_t BreakpointLocation::GetIgnoreCount() const { in GetIgnoreCount()
337 .GetIgnoreCount();
347 uint32_t loc_ignore = m_options_up->GetIgnoreCount(); in DecrementIgnoreCount()
354 uint32_t owner_ignore = GetBreakpoint().GetIgnoreCount(); in IgnoreCountShouldStop()
357 loc_ignore = m_options_up->GetIgnoreCount(); in IgnoreCountShouldStop()
659 .GetIgnoreCount()); in SwapLocation()
333 uint32_t BreakpointLocation::GetIgnoreCount() const { GetIgnoreCount() function in BreakpointLocation
H A DBreakpoint.cpp303 if (m_options.GetIgnoreCount() == n) in SetIgnoreCount()
311 uint32_t ignore = m_options.GetIgnoreCount(); in DecrementIgnoreCount()
316 uint32_t Breakpoint::GetIgnoreCount() const { in GetIgnoreCount()
317 return m_options.GetIgnoreCount(); in GetIgnoreCount()
315 uint32_t Breakpoint::GetIgnoreCount() const { GetIgnoreCount() function in Breakpoint
H A DWatchpoint.cpp388 GetIgnoreCount()); in DumpWithLevel()
446 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount() function in Watchpoint
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py100 self.assertEqual(bkpt.GetIgnoreCount(), 10, "Set the ignore count successfully")
102 bkpt.location[0].GetIgnoreCount(),
157 bkpt_loc.GetIgnoreCount(),
/llvm-project/lldb/test/API/python_api/default-constructor/
H A Dsb_watchpoint.py16 obj.GetIgnoreCount()
H A Dsb_breakpoint.py20 obj.GetIgnoreCount()
H A Dsb_breakpointname.py16 obj.GetIgnoreCount()
/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp180 uint32_t SBWatchpoint::GetIgnoreCount() { in GetIgnoreCount() function in SBWatchpoint
187 return watchpoint_sp->GetIgnoreCount(); in GetIgnoreCount()
H A DSBBreakpointLocation.cpp133 uint32_t SBBreakpointLocation::GetIgnoreCount() { in GetIgnoreCount() function in SBBreakpointLocation
140 return loc_sp->GetIgnoreCount(); in GetIgnoreCount()
H A DSBBreakpointName.cpp283 uint32_t SBBreakpointName::GetIgnoreCount() const { in GetIgnoreCount() function in SBBreakpointName
293 return bp_name->GetOptions().GetIgnoreCount(); in GetIgnoreCount()
H A DSBBreakpoint.cpp331 uint32_t SBBreakpoint::GetIgnoreCount() const { in GetIgnoreCount() function in SBBreakpoint
339 count = bkpt_sp->GetIgnoreCount(); in GetIgnoreCount()
/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h61 uint32_t GetIgnoreCount();
H A DSBBreakpointName.h54 uint32_t GetIgnoreCount() const;
H A DSBBreakpointLocation.h53 uint32_t GetIgnoreCount();
H A DSBBreakpoint.h74 uint32_t GetIgnoreCount() const;
/llvm-project/lldb/test/API/python_api/watchpoint/
H A DTestWatchpointIgnoreCount.py74 self.assertEqual(watchpoint.GetIgnoreCount(), 0)
/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h99 uint32_t GetIgnoreCount() const;
H A DWatchpoint.h80 uint32_t GetIgnoreCount() const;
H A DBreakpointOptions.h307 uint32_t GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount() function
H A DBreakpoint.h326 uint32_t GetIgnoreCount() const;
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/
H A DTestBreakpointIgnoreCount.py134 location.GetIgnoreCount(), 2, "SetIgnoreCount() works correctly"
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py220 self.assertEqual(bp_object.GetIgnoreCount(), self.ignore_count, "IgnoreCount")
/llvm-project/lldb/source/Target/
H A DStopInfo.cpp919 if (wp_sp->GetHitCount() <= wp_sp->GetIgnoreCount()) { in PerformAction()