Home
last modified time | relevance | path

Searched refs:maxFrameTime (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/
H A DJankAnimatorMonitor.cpp77 uint64_t maxFrame = (metrics.appInfo.maxFrameTime > metrics.rsInfo.maxFrameTime) ? in ReportMetrics()
78 metrics.appInfo.maxFrameTime : metrics.rsInfo.maxFrameTime; in ReportMetrics()
79 uint64_t val = metrics.appInfo.isDisplayAnimator ? maxFrame : metrics.rsInfo.maxFrameTime; in ReportMetrics()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/converter/
H A DJankAnimatorMonitorConverter.h48 event.maxAppFrameTime = metrics.appInfo.maxFrameTime; in ConverterReportData()
53 event.maxRenderFrameTime = metrics.rsInfo.maxFrameTime; in ConverterReportData()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Devent_report.cpp422 const int64_t maxFrameTime) in ReportAppFrameDropToRss() argument
429 { "maxFrameTime", std::to_string(maxFrameTime) }, in ReportAppFrameDropToRss()
448 const auto& maxFrameTime = data.maxFrameTime / NS_TO_MS; in ReportEventJankFrame() local
470 EVENT_KEY_MAX_FRAMETIME, static_cast<uint64_t>(maxFrameTime), in ReportEventJankFrame()
479 static_cast<long long>(startTime), static_cast<long long>(maxFrameTime)); in ReportEventJankFrame()
481 if (isDisplayAnimator && maxFrameTime > MAX_JANK_FRAME_TIME) { in ReportEventJankFrame()
482 ReportAppFrameDropToRss(true, bundleName, maxFrameTime); in ReportEventJankFrame()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/perfmonitor/
H A Dperf_monitor.cpp221 if (!isFirstFrame && duration > maxFrameTime) { in RecordFrame()
222 maxFrameTime = duration; in RecordFrame()
260 maxFrameTime = 0; in Reset()
512 data.maxFrameTime = record->maxFrameTime; in FlushDataBase()
H A Dperf_monitor.h78 int64_t maxFrameTime {0};
116 int64_t maxFrameTime {0};
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/log/
H A Devent_report.h218 const int64_t maxFrameTime = 0);
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/
H A DXperfEvt.h43 uint64_t maxFrameTime{0};
H A DEvtParser.h297 …evt.animatorInfo.commonInfo.maxFrameTime = static_cast<uint64_t>(sysEvent.GetEventIntValue(MAX_FRA… in ConvertToXperfAnimatorEvent()