Lines Matching refs:indent
408 bool Report::OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount, in OutputStdCallFrame() argument
413 HLOGV("frame %f indent %d at %s", heat, indent, funcName.data()); in OutputStdCallFrame()
421 fprintf(output_, "%*s", indent, " "); in OutputStdCallFrame()
424 fprintf(output_, "%*s", indent, "|- "); in OutputStdCallFrame()
458 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, uint64_t totalEv… in OutputStdCallFrames() argument
470 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames()
477 OutputStdCallFrame(indent + CALLSTACK_INDENT, "[run in self function]", in OutputStdCallFrames()
485 HLOGV("childCallFream %*c %s", indent, ' ', callFrame.childs[0].func_.data()); in OutputStdCallFrames()
487 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_); in OutputStdCallFrames()
491 HLOGV("childCallFream %*c %s", indent, ' ', childCallFrame.func_.data()); in OutputStdCallFrames()
492 OutputStdCallFrames(indent + CALLSTACK_INDENT, childCallFrame, callFrame.eventCount_); in OutputStdCallFrames()