Home
last modified time | relevance | path

Searched refs:PerformanceEntryReporter (Results 1 – 7 of 7) sorted by relevance

/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/WebPerformance/
H A DABI49_0_0NativePerformanceObserver.cpp27 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()
H A DABI49_0_0PerformanceEntryReporter.cpp21 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 …]
H A DABI49_0_0PerformanceEntryReporter.h70 class PerformanceEntryReporter : public EventLogger {
72 PerformanceEntryReporter(PerformanceEntryReporter const &) = delete;
73 void operator=(PerformanceEntryReporter const &) = delete;
79 static PerformanceEntryReporter &getInstance();
174 PerformanceEntryReporter() {} in PerformanceEntryReporter() function
H A DABI49_0_0NativePerformance.cpp33 PerformanceEntryReporter::getInstance().mark(name, startTime, duration); in mark()
44 PerformanceEntryReporter::getInstance().measure( in measure()
H A DABI49_0_0NativePerformance.h17 class PerformanceEntryReporter; variable
H A DABI49_0_0NativePerformanceObserver.h17 class PerformanceEntryReporter; variable
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/WebPerformance/__tests__/
H A DABI49_0_0PerformanceEntryReporterTest.cpp34 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestStartReporting) { in TEST() argument
35 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()
50 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestStopReporting) { in TEST() argument
51 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()
87 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestReportMarks) { in TEST() argument
88 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()
131 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestReportMeasures) { in TEST() argument
132 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()
249 TEST(PerformanceEntryReporter, PerformanceEntryReporterTestGetEntries) { in TEST() argument
250 auto &reporter = PerformanceEntryReporter::getInstance(); in TEST()
[all …]