HomeSort by relevance Sort by last modified time
    Searched refs:GetHitCount (Results 1 - 25 of 41) sorted by null

1 2

  /external/lldb/test/python_api/default-constructor/
sb_watchpoint.py 16 obj.GetHitCount()
sb_breakpoint.py 17 obj.GetHitCount()
  /external/lldb/scripts/Python/interface/
SBWatchpoint.i 61 GetHitCount ();
SBBreakpoint.i 63 self.assertTrue(breakpoint.GetHitCount() == 3)
132 GetHitCount () const;
  /external/chromium_org/net/url_request/
test_url_request_interceptor.h 52 int GetHitCount();
test_url_request_interceptor.cc 85 int GetHitCount() const {
186 int TestURLRequestInterceptor::GetHitCount() {
187 return delegate_->GetHitCount();
  /external/lldb/include/lldb/API/
SBWatchpoint.h 58 GetHitCount ();
SBBreakpoint.h 80 GetHitCount () const;
  /external/lldb/include/lldb/Breakpoint/
StoppointLocation.h 67 GetHitCount () const
BreakpointLocationList.h 169 GetHitCount () const;
WatchpointList.h 192 GetHitCount () const;
  /external/chromium_org/chrome/browser/component_updater/test/
component_updater_service_unittest.cc 198 EXPECT_EQ(2, post_interceptor_->GetHitCount())
242 EXPECT_EQ(2, post_interceptor_->GetHitCount())
343 EXPECT_EQ(3, post_interceptor_->GetHitCount())
349 EXPECT_EQ(1, get_interceptor_->GetHitCount());
440 EXPECT_EQ(1, post_interceptor_->GetHitCount())
446 EXPECT_EQ(0, get_interceptor_->GetHitCount());
534 EXPECT_EQ(1, post_interceptor_->GetHitCount())
539 EXPECT_EQ(0, get_interceptor_->GetHitCount());
559 EXPECT_EQ(2, post_interceptor_->GetHitCount())
564 EXPECT_EQ(1, get_interceptor_->GetHitCount());
    [all...]
  /external/chromium_org/components/component_updater/test/
crx_downloader_unittest.cc 189 EXPECT_EQ(1, get_interceptor_->GetHitCount());
227 EXPECT_EQ(1, get_interceptor_->GetHitCount());
257 EXPECT_EQ(0, get_interceptor_->GetHitCount());
277 EXPECT_EQ(0, get_interceptor_->GetHitCount());
306 EXPECT_EQ(1, get_interceptor_->GetHitCount());
338 EXPECT_EQ(1, get_interceptor_->GetHitCount());
370 EXPECT_EQ(0, get_interceptor_->GetHitCount());
request_sender_unittest.cc 139 EXPECT_EQ(1, post_interceptor_1->GetHitCount())
165 EXPECT_EQ(1, post_interceptor_1->GetHitCount())
169 EXPECT_EQ(1, post_interceptor_2->GetHitCount())
195 EXPECT_EQ(1, post_interceptor_1->GetHitCount())
199 EXPECT_EQ(1, post_interceptor_2->GetHitCount())
update_checker_unittest.cc 181 EXPECT_EQ(1, post_interceptor_->GetHitCount())
229 EXPECT_EQ(1, post_interceptor_->GetHitCount())
url_request_post_interceptor.h 81 int GetHitCount() const;
  /external/lldb/test/expression_command/test/
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/
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/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 84 .setHitCount(node->GetHitCount())
  /external/lldb/test/python_api/watchpoint/
TestWatchpointIgnoreCount.py 96 self.assertTrue(watchpoint.GetHitCount() == 2)
  /external/lldb/source/API/
SBWatchpoint.cpp 176 SBWatchpoint::GetHitCount ()
183 count = watchpoint_sp->GetHitCount();
188 log->Printf ("SBWatchpoint(%p)::GetHitCount () => %u", watchpoint_sp.get(), count);
  /external/lldb/source/Breakpoint/
BreakpointLocationList.cpp 204 BreakpointLocationList::GetHitCount () const
210 hit_count += (*pos)->GetHitCount();
WatchpointList.cpp 229 WatchpointList::GetHitCount () const
235 hit_count += (*pos)->GetHitCount();
BreakpointLocation.cpp 624 s->Printf ("hit count = %-4u\n", GetHitCount());
638 GetHitCount());
660 GetHitCount(),
  /external/chromium_org/v8/include/
v8-profiler.h 54 unsigned GetHitCount() const;

Completed in 499 milliseconds

1 2