Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/
H A Dimage_object.cpp116 int32_t totalFrames = 1; in BuildImageObject() local
119 totalFrames = codec->getFrameCount(); in BuildImageObject()
132 if (totalFrames == 1) { in BuildImageObject()
133 return MakeRefPtr<StaticImageObject>(source, imageSize, totalFrames, skData); in BuildImageObject()
135 return CreateAnimatedImageObject(source, imageSize, totalFrames, skData); in BuildImageObject()
138 if (totalFrames == 1) { in BuildImageObject()
139 return MakeRefPtr<StaticImageObject>(source, imageSize, totalFrames, rsData); in BuildImageObject()
141 return CreateAnimatedImageObject(source, imageSize, totalFrames, rsData); in BuildImageObject()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/monitor/converter/
H A DJankAnimatorMonitorConverter.h46 event.totalAppFrames = metrics.appInfo.totalFrames; in ConverterReportData()
51 event.totalRenderFrames = metrics.rsInfo.totalFrames; in ConverterReportData()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/perfmonitor/
H A Dperf_monitor.cpp167 if (data.totalFrames > 0) { in ReportPerfEventToUI()
199 if (totalFrames == 0) { in RecordFrame()
225 totalFrames++; in RecordFrame()
267 totalFrames = 0; in Reset()
518 data.totalFrames = record->totalFrames; in FlushDataBase()
H A Dperf_monitor.h74 int32_t totalFrames {0};
122 int32_t totalFrames {0};
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Devent_report.cpp446 const auto& totalFrames = data.totalFrames; in ReportEventJankFrame() local
468 EVENT_KEY_TOTAL_FRAMES, totalFrames, in ReportEventJankFrame()
/ohos5.0/base/hiviewdfx/hiview/plugins/performance/
H A DXperfEvt.h41 int32_t totalFrames{0};
H A DEvtParser.h292 …evt.animatorInfo.commonInfo.totalFrames = static_cast<int32_t>(sysEvent.GetEventIntValue(TOTAL_FRA… in ConvertToXperfAnimatorEvent()