/developtools/hiperf/src/ |
D | report.cpp | 34 void Report::AddReportItem(const PerfRecordSample &sample, bool includeCallStack) in AddReportItem() 84 void Report::AddReportItemBranch(const PerfRecordSample &sample) in AddReportItemBranch() 109 void Report::StatisticsRecords() in StatisticsRecords() 117 std::bind(&Report::MultiLevelSameAndUpdateCount, this, _1, _2)); in StatisticsRecords() 127 void Report::FilterDisplayRecords() in FilterDisplayRecords() 158 void Report::UpdateReportItemsAfterAdjust() in UpdateReportItemsAfterAdjust() 179 void Report::AdjustReportItems() in AdjustReportItems() 192 std::bind(&Report::MultiLevelSorting, this, _1, _2)); in AdjustReportItems() 217 int Report::MultiLevelCompare(const ReportItem &a, const ReportItem &b) in MultiLevelCompare() 240 bool Report::MultiLevelSame(const ReportItem &a, const ReportItem &b) in MultiLevelSame() [all …]
|
D | hiperf_libreport_demo.cpp | 21 Report("perf.data", "report.txt", ""); in main()
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/ |
D | MainPage.ets | 18 import { Report } from '../common/ui/main/Report'; 34 Report()
|
/developtools/smartperf_host/ide/ |
D | tsconfig.json | 12 // "checkJs": true, /* Report errors in .js files. */ 39 // "noUnusedLocals": true, /* Report errors on unused locals. */ 40 // "noUnusedParameters": true, /* Report errors on unused parameters. */ 41 …// "noImplicitReturns": true, /* Report error when not all code paths in function retu… 42 …// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch stateme…
|
/developtools/profiler/host/smartperf/ide/ |
D | tsconfig.json | 12 // "checkJs": true, /* Report errors in .js files. */ 39 // "noUnusedLocals": true, /* Report errors on unused locals. */ 40 // "noUnusedParameters": true, /* Report errors on unused parameters. */ 41 …// "noImplicitReturns": true, /* Report error when not all code paths in function retu… 42 …// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch stateme…
|
/developtools/hiperf/script/ |
D | loadlib_test.py | 25 libhiperf_report.Report.restype = c_bool 52 ret = libhiperf_report.Report(b'perf.data', b'report.txt', b'-s')
|
D | make_report_sample.py | 26 get_lib().Report(perf_data.encode("utf-8"),
|
/developtools/hiperf/include/ |
D | subcommand_report.h | 147 Report report_[MAX] = {reportOption_, reportOption_}; 148 inline Report &GetReport(RecordIndex index = CURRENT, int configId = 0)
|
D | hiperf_libreport.h | 52 DLL_EXPORT int CDECL Report(const char *perfFile, const char *reportFile,
|
/developtools/profiler/device/plugins/sample_plugin/include/ |
D | sample_plugin.h | 28 int Report(uint8_t* configData, uint32_t configSize);
|
/developtools/hiperf/test/unittest/common/native/ |
D | hiperf_libreport_test.cpp | 288 EXPECT_EQ(::Report(PERF_DATA_INPUT_PATH, REPORT_OUTPUT_PATH, ""), 0); 300 EXPECT_NE(::Report(nullptr, REPORT_OUTPUT_PATH, ""), 0); 308 EXPECT_NE(::Report(PERF_DATA_INPUT_PATH, nullptr, ""), 0); 316 EXPECT_NE(::Report(nullptr, nullptr, ""), 0); 324 EXPECT_NE(::Report(ILLEGAL_PATH, ILLEGAL_PATH, ""), 0); 333 EXPECT_NE(::Report("", "", ""), 0);
|
/developtools/hiperf/test/unittest/resource/testdata/ |
D | report_test_sort1.txt | 3 <<Hiperf Report>>
|
D | report_test_tids1.txt | 3 <<Hiperf Report>>
|
D | report_test_funcs.txt | 3 <<Hiperf Report>>
|
D | report_test_dsos.txt | 3 <<Hiperf Report>>
|
/developtools/hiperf/test/fuzztest/libreport_fuzzer/ |
D | LibReport_fuzzer.cpp | 28 Report(dataPtr, dataPtr, dataPtr); in FuzzLibReport()
|
/developtools/profiler/device/plugins/cpu_plugin/src/ |
D | test_main.cpp | 35 static void Report(PluginModuleStruct*& cpuPlugin, std::vector<uint8_t>& dataBuffer) in Report() function 113 Report(cpuPlugin, dataBuffer); in main()
|
D | cpu_module.cpp | 38 return g_plugin->Report(bufferData, bufferSize); in CpuPluginReportResult()
|
/developtools/profiler/device/plugins/diskio_plugin/include/ |
D | diskio_data_plugin.h | 45 int Report(uint8_t* configData, uint32_t configSize);
|
/developtools/profiler/device/plugins/diskio_plugin/src/ |
D | diskio_module.cpp | 38 return g_plugin->Report(bufferData, bufferSize); in DiskioPluginReportResult()
|
/developtools/profiler/device/plugins/native_hook/include/ |
D | stack_writer.h | 44 void Report() const;
|
/developtools/profiler/device/plugins/sample_plugin/src/ |
D | sample_module.cpp | 38 return g_plugin->Report(bufferData, bufferSize); in SamplePluginReportResult()
|
/developtools/profiler/device/plugins/network_plugin/src/ |
D | network_module.cpp | 41 return g_plugin->Report(bufferData, bufferSize); in NetworkPluginReportResult()
|
/developtools/profiler/device/plugins/process_plugin/src/ |
D | process_module.cpp | 41 return g_plugin->Report(bufferData, bufferSize); in ProcessPluginReportResult()
|
/developtools/profiler/device/plugins/memory_plugin/src/ |
D | memory_module.cpp | 38 return g_plugin->Report(bufferData, bufferSize); in MemPluginReportResult()
|