Lines Matching refs:frameIt
46 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()
74 sample.data_.pid, sample.data_.tid, thread.name_, frameIt->filePath_, in AddReportItem()
75 frameIt->symbolName_, frameIt->vaddrInFile_, sample.data_.period); in AddReportItem()