Home
last modified time | relevance | path

Searched refs:reportItem (Results 1 – 5 of 5) sorted by relevance

/developtools/hiperf/src/
Dreport.cpp185 for (auto &reportItem : config.reportItems_) { in AdjustReportItems() local
186 HLOGV("reportItem %s", reportItem.ToDebugString().c_str()); in AdjustReportItems()
196 for (auto &reportItem : config.reportItems_) { in AdjustReportItems() local
197 HLOGV("reportItem %s", reportItem.ToDebugString().c_str()); in AdjustReportItems()
208 for (auto &reportItem : config.reportItems_) { in AdjustReportItems() local
209 ReportItemCallFrame::OrderCallFrames(reportItem.callStacks_); in AdjustReportItems()
496 const ReportItem &reportItem = it.operator*(); in OutputStdContent() local
498 if (reportItem.heat < option_.heatLimit_) { in OutputStdContent()
502 fprintf(output_, "%*.2f%% ", FULL_PERCENTAGE_NUM_LEN, reportItem.heat); in OutputStdContent()
504 OutputStdContentItem(reportItem); in OutputStdContent()
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/
DReportDetail.ets37 private reportItem: ReportItem = null
43 let report:any = router.getParams()["reportItem"]
49 this.reportItem = report
51 globalThis.testDuration=this.reportItem.testDuration
85 Image(globalThis.iconMap.get(this.reportItem.packageName))
101 Text(`开始时间:${this.reportItem.startTime}`)
105 Text(`测试时长:${secToTime(Number(this.reportItem.testDuration))}`)
109 Text(`文件路径:${this.reportItem.dbPath}/t_index_info.csv`)
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/main/
DReport.ets26 @State private reportItem: Array<ReportItem> = globalThis.reportList
37 ForEach(this.reportItem, (item) => {
87 reportItem: item,
/developtools/hiperf/include/
Dreport.h551 void OutputStdContentItem(const ReportItem &reportItem);
552 void OutputStdContentDiffOneSide(bool leftOnly, ReportItem &reportItem);
/developtools/hiperf/test/unittest/common/native/
Dreport_test.cpp797 for (auto &reportItem : report_->configs_[0].reportItems_) { variable
798 printf("reportItem %s\n", reportItem.ToDebugString().c_str());