Lines Matching refs:callFrame
451 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, in OutputStdCallFrames() argument
464 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames()
470 if (callFrame.selfEventCount_ != 0 and callFrame.selfEventCount_ != callFrame.eventCount_) { in OutputStdCallFrames()
472 callFrame.selfEventCount_, callFrame.eventCount_); in OutputStdCallFrames()
477 if (callFrame.childs.size() == 1u and in OutputStdCallFrames()
478 callFrame.childs[0].eventCount_ == callFrame.eventCount_) { in OutputStdCallFrames()
479 HLOGV("childCallFream %*c %s", indent, ' ', callFrame.childs[0].func_.data()); in OutputStdCallFrames()
481 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_); in OutputStdCallFrames()
484 for (const ReportItemCallFrame &childCallFrame : callFrame.childs) { in OutputStdCallFrames()
486 OutputStdCallFrames(indent + CALLSTACK_INDENT, childCallFrame, callFrame.eventCount_); in OutputStdCallFrames()
509 for (auto &callFrame : reportItem.callStacks_) { in OutputStdContent() local
510 OutputStdCallFrames(CALLSTACK_INDENT, callFrame, reportItem.eventCount_); in OutputStdContent()