Searched refs:ReportItem (Results 1 – 7 of 7) sorted by relevance
| /developtools/hiperf/test/unittest/common/native/ |
| D | report_test.cpp | 51 void GetNumberTest(const ReportItem &item, ReportKeyGetFunction &getFunction, uint64_t number, in GetNumberTest() 63 void GetNumberTest(const ReportItem &item, ReportKeyGetFunction &getFunction, int number, in GetNumberTest() 77 void GetStringTest(const ReportItem &item, ReportKeyGetFunction &getFunction, in GetStringTest() 175 ReportItem a(1, 2, "comm", "dso", "func", 0x123, 1000); 176 ReportItem aDuplicated(1, 2, "comm", "dso", "func", 0x123, 1000); 177 ReportItem aDiffPid(10, 2, "comm", "dso", "func", 0x123, 1000); 178 ReportItem aDiffTid(1, 20, "comm", "dso", "func", 0x123, 1000); 179 ReportItem aDiffComm(1, 2, "comm0", "dso", "func", 0x123, 1000); 180 ReportItem aDiffDso(1, 2, "comm", "dso0", "func", 0x123, 1000); 181 ReportItem aDiffFunc(1, 2, "comm", "dso", "func0", 0x123, 1000); [all …]
|
| /developtools/hiperf/include/ |
| D | report.h | 111 class ReportItem { 128 ReportItem(pid_t pid, pid_t tid, const char *comm, const char *dso, const char *func, in ReportItem() function 142 ReportItem(pid_t pid, pid_t tid, std::string &comm, const std::string_view &dso, in ReportItem() function 156 bool operator==(const ReportItem &b) const 161 bool operator!=(const ReportItem &b) const 174 static int CompareEventCount(const ReportItem &a, const ReportItem &b) in CompareEventCount() 183 static int CompareSortingEventCount(const ReportItem &a, const ReportItem &b) in CompareSortingEventCount() 188 static const std::string GetEventCount(const ReportItem &a, size_t len, in GetEventCount() 195 static int ComparePid(const ReportItem &a, const ReportItem &b) in ComparePid() 203 static const std::string GetPid(const ReportItem &a, size_t len, const std::string &format) in GetPid() [all …]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/database/ |
| D | LocalRepository.ts | 19 import { ReportItem } from '../entity/LocalConfigEntity' 52 let resReport: Array<ReportItem> = res 69 export async function getReportListDb(): Promise<Array<ReportItem>> { 70 var result = Array<ReportItem>() 75 new ReportItem(
|
| /developtools/hiperf/src/ |
| D | report.cpp | 33 unsigned long long ReportItem::allIndex_ = 0; 47 ReportItem &item = configs_[configIndex].reportItems_.emplace_back( in AddReportItem() 73 ReportItem &item = configs_[configIndex].reportItems_.emplace_back( in AddReportItem() 96 ReportItem &item = configs_[configIndex].reportItems_.emplace_back( in AddReportItemBranch() 205 &ReportItem::CompareSortingEventCount); 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() 245 void Report::MergeCallFrameCount(ReportItem &leftItem, ReportItem &rightItem) in MergeCallFrameCount() 284 bool Report::MultiLevelSameAndUpdateCount(ReportItem &l, ReportItem &r) in MultiLevelSameAndUpdateCount() 301 bool Report::MultiLevelSorting(const ReportItem &a, const ReportItem &b) in MultiLevelSorting() [all …]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/main/ |
| D | Report.ets | 20 import { ReportItem } from '../../entity/LocalConfigEntity'; 26 @State private reportItem: Array<ReportItem> = globalThis.reportList
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/entity/ |
| D | LocalConfigEntity.ts | 92 export class ReportItem { class
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/ |
| D | ReportDetail.ets | 25 import { ReportItem } from '../common/entity/LocalConfigEntity'; 37 private reportItem: ReportItem = null
|