/external/lldb/test/python_api/default-constructor/ |
H A D | sb_watchpoint.py | 16 obj.GetHitCount()
|
H A D | sb_breakpoint.py | 17 obj.GetHitCount()
|
/external/lldb/scripts/Python/interface/ |
H A D | SBWatchpoint.i | 61 GetHitCount ();
|
H A D | SBBreakpoint.i | 63 self.assertTrue(breakpoint.GetHitCount() == 3) 132 GetHitCount () const;
|
/external/lldb/include/lldb/API/ |
H A D | SBWatchpoint.h | 58 GetHitCount ();
|
H A D | SBBreakpoint.h | 80 GetHitCount () const;
|
/external/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointLocationList.h | 169 GetHitCount () const;
|
H A D | StoppointLocation.h | 67 GetHitCount () const function in class:lldb_private::StoppointLocation
|
H A D | WatchpointList.h | 192 GetHitCount () const;
|
H A D | Breakpoint.h | 355 GetHitCount () const;
|
/external/lldb/test/expression_command/test/ |
H A D | TestExprs.py | 131 self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE) 171 self.assertTrue (callee_break.GetHitCount() == 1) 179 self.assertTrue (callee_break.GetHitCount() == 2)
|
/external/lldb/test/functionalities/thread/concurrent_events/ |
H A D | TestConcurrentEvents.py | 360 reason_str = "%s hit %d times" % (lldbutil.get_description(bp), bp.GetHitCount()) 364 reason_str = "%s hit %d times" % (lldbutil.get_description(watch), watch.GetHitCount()) 386 return self.finish_breakpoint.GetHitCount() > 0 or \ 491 self.assertEqual(1, self.finish_breakpoint.GetHitCount(), "Expected main thread (finish) breakpoint to be hit once") 504 breakpoint_hit_count = self.thread_breakpoint.GetHitCount() if expected_breakpoint_threads > 0 else 0 513 watchpoint_hit_count = self.thread_watchpoint.GetHitCount() if expected_watchpoint_threads > 0 else 0
|
/external/lldb/test/python_api/watchpoint/ |
H A D | TestWatchpointIgnoreCount.py | 96 self.assertTrue(watchpoint.GetHitCount() == 2)
|
H A D | TestWatchpointIter.py | 121 self.assertTrue(watchpoint.GetHitCount() == 1)
|
/external/lldb/source/API/ |
H A D | SBWatchpoint.cpp | 176 SBWatchpoint::GetHitCount () function in class:SBWatchpoint 183 count = watchpoint_sp->GetHitCount(); 188 log->Printf ("SBWatchpoint(%p)::GetHitCount () => %u", watchpoint_sp.get(), count);
|
/external/lldb/source/Breakpoint/ |
H A D | BreakpointLocationList.cpp | 204 BreakpointLocationList::GetHitCount () const function in class:BreakpointLocationList 210 hit_count += (*pos)->GetHitCount();
|
H A D | WatchpointList.cpp | 229 WatchpointList::GetHitCount () const function in class:WatchpointList 235 hit_count += (*pos)->GetHitCount();
|
H A D | BreakpointLocation.cpp | 624 s->Printf ("hit count = %-4u\n", GetHitCount()); 638 GetHitCount()); 660 GetHitCount(),
|
H A D | BreakpointSite.cpp | 90 GetHitCount());
|
H A D | Watchpoint.cpp | 193 if (GetHitCount() <= GetIgnoreCount()) 267 GetHitCount(),
|
H A D | Breakpoint.cpp | 187 Breakpoint::GetHitCount () const function in class:Breakpoint 189 return m_locations.GetHitCount();
|
/external/lldb/test/functionalities/breakpoint/breakpoint_conditions/ |
H A D | TestBreakpointConditions.py | 189 self.assertTrue(breakpoint.GetHitCount() == 3)
|
/external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/ |
H A D | TestBreakpointIgnoreCount.py | 147 self.assertTrue(breakpoint.GetHitCount() == 3)
|
/external/lldb/test/lang/c/bitfields/ |
H A D | TestBitfields.py | 147 self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)
|
/external/lldb/test/lang/cpp/class_types/ |
H A D | TestClassTypes.py | 153 self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)
|