Searched refs:PerformanceEntryReporter (Results 1 – 7 of 7) sorted by relevance
27 setEventLogger(&PerformanceEntryReporter::getInstance()); in NativePerformanceObserver()37 PerformanceEntryReporter::getInstance().startReporting( in startReporting()44 PerformanceEntryReporter::getInstance().stopReporting( in stopReporting()50 return PerformanceEntryReporter::getInstance().popPendingEntries(); in popPendingEntries()56 PerformanceEntryReporter::getInstance().setReportingCallback(callback); in setOnPerformanceEntryCallback()62 PerformanceEntryReporter::getInstance().logEntry(entry); in logRawEntry()68 PerformanceEntryReporter::getInstance().getEventCounts(); in getEventCounts()77 PerformanceEntryReporter::getInstance().setDurationThreshold( in setDurationThreshold()85 PerformanceEntryReporter::getInstance().clearEntries( in clearEntries()94 return PerformanceEntryReporter::getInstance().getEntries( in getEntries()
21 EventTag PerformanceEntryReporter::sCurrentEventTag_{0};45 PerformanceEntryReporter &PerformanceEntryReporter::getInstance() { in getInstance()46 static PerformanceEntryReporter instance; in getInstance()50 void PerformanceEntryReporter::setReportingCallback( in setReportingCallback()61 void PerformanceEntryReporter::setDurationThreshold( in setDurationThreshold()71 void PerformanceEntryReporter::stopReporting() { in stopReporting()118 void PerformanceEntryReporter::mark( in mark()151 void PerformanceEntryReporter::clearEntries( in clearEntries()213 void PerformanceEntryReporter::measure( in measure()240 double PerformanceEntryReporter::getMarkTime( in getMarkTime()[all …]
70 class PerformanceEntryReporter : public EventLogger {72 PerformanceEntryReporter(PerformanceEntryReporter const &) = delete;73 void operator=(PerformanceEntryReporter const &) = delete;79 static PerformanceEntryReporter &getInstance();174 PerformanceEntryReporter() {} in PerformanceEntryReporter() function
33 PerformanceEntryReporter::getInstance().mark(name, startTime, duration); in mark()44 PerformanceEntryReporter::getInstance().measure( in measure()
17 class PerformanceEntryReporter; variable
34 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestStartReporting) { in TEST() argument35 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()50 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestStopReporting) { in TEST() argument51 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()87 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestReportMarks) { in TEST() argument88 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()131 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestReportMeasures) { in TEST() argument132 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()249 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestGetEntries) { in TEST() argument250 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()[all …]