Home
last modified time | relevance | path

Searched refs:frameIt (Results 1 – 2 of 2) sorted by relevance

/developtools/hiperf/src/
Dreport.cpp46 auto frameIt = sample.callFrames_.rbegin(); in AddReportItem() local
48 sample.data_.pid, sample.data_.tid, thread.name_, frameIt->filePath_, in AddReportItem()
49 frameIt->symbolName_, frameIt->vaddrInFile_, sample.data_.period); in AddReportItem()
54 for (frameIt = sample.callFrames_.rbegin(); frameIt != sample.callFrames_.rend(); in AddReportItem()
55 frameIt++) { in AddReportItem()
56 HLOG_ASSERT(frameIt->ip_ < PERF_CONTEXT_MAX); in AddReportItem()
60 frameIt->symbolName_, frameIt->vaddrInFile_, frameIt->filePath_, in AddReportItem()
62 (std::next(frameIt) == sample.callFrames_.rend()) ? sample.data_.period : 0); in AddReportItem()
71 auto frameIt = sample.callFrames_.begin(); in AddReportItem() local
72 HLOG_ASSERT(frameIt->ip_ < PERF_CONTEXT_MAX); in AddReportItem()
[all …]
Dsubcommand_dump.cpp402 for (auto frameIt = sample->callFrames_.begin(); frameIt != sample->callFrames_.end(); in DumpCallChain() local
403 frameIt++) { in DumpCallChain()
404 PrintIndent(indent, "%02zd:%s\n", std::distance(frameIt, sample->callFrames_.end()), in DumpCallChain()
405 frameIt->ToSymbolString().c_str()); in DumpCallChain()