Searched refs:ReportItemCallFrame (Results 1 – 3 of 3) sorted by relevance
| /developtools/hiperf/test/unittest/common/native/ |
| D | report_test.cpp | 99 ReportItemCallFrame a("a", 0x0, "aa", 0, 0); 100 ReportItemCallFrame aDuplicated("a", 0x0, "aa", 0, 0); 101 ReportItemCallFrame a2("a2", 0x0, "aa", 0, 0); 102 ReportItemCallFrame aDiffAddr("a", 0x1234, "aa", 0, 0); 103 ReportItemCallFrame aDiffEvent("a", 0, "aa", 1234, 0); 104 ReportItemCallFrame aDiffSelfEvent("a", 0, "aa", 0, 1234); 105 ReportItemCallFrame aDiffDso("a", 0, "aa1234", 0, 1234); 106 ReportItemCallFrame b("b", 0x0, "bb", 0, 0); 126 ReportItemCallFrame a("a", 0x0, "aa", 0, 0); 127 ReportItemCallFrame a2("a", 0x0, "aa", 2, 0); [all …]
|
| /developtools/hiperf/include/ |
| D | report.h | 34 class ReportItemCallFrame { 41 std::vector<ReportItemCallFrame> childs; 42 ReportItemCallFrame(std::string_view func, uint64_t vaddr, std::string_view dso, in ReportItemCallFrame() function 52 bool operator==(const ReportItemCallFrame &b) const 57 bool operator!=(const ReportItemCallFrame &b) const 62 static int CompareSortingEventCount(const ReportItemCallFrame &a, const ReportItemCallFrame &b) in CompareSortingEventCount() 67 static void OrderCallFrames(std::vector<ReportItemCallFrame> &callframes, int indent = 2) 72 &ReportItemCallFrame::CompareSortingEventCount); 84 static void DumpCallFrames(std::vector<ReportItemCallFrame> &callframes, int indent = 2) 104 bool Same(const ReportItemCallFrame &b) const in Same() [all …]
|
| /developtools/hiperf/src/ |
| D | report.cpp | 53 std::vector<ReportItemCallFrame> *currentCallFrames = &item.callStacks_; in AddReportItem() 59 ReportItemCallFrame &nextCallFrame = currentCallFrames->emplace_back( in AddReportItem() 209 ReportItemCallFrame::OrderCallFrames(reportItem.callStacks_); in AdjustReportItems() 248 std::vector<ReportItemCallFrame> *leftCallFrames = &leftItem.callStacks_; in MergeCallFrameCount() 249 const std::vector<ReportItemCallFrame> *rightCallFrames = &rightItem.callStacks_; in MergeCallFrameCount() 255 const ReportItemCallFrame &rightFrame = rightCallFrames->at(0); in MergeCallFrameCount() 451 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, in OutputStdCallFrames() 484 for (const ReportItemCallFrame &childCallFrame : callFrame.childs) { in OutputStdCallFrames()
|