Lines Matching refs:indent
401 bool Report::OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount, in OutputStdCallFrame() argument
406 HLOGV("frame %f indent %d at %s", heat, indent, funcName.data()); in OutputStdCallFrame()
414 fprintf(output_, "%*s", indent, " "); in OutputStdCallFrame()
417 fprintf(output_, "%*s", indent, "|- "); in OutputStdCallFrame()
451 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, in OutputStdCallFrames() argument
464 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames()
471 OutputStdCallFrame(indent + CALLSTACK_INDENT, "[run in self function]", 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()
485 HLOGV("childCallFream %*c %s", indent, ' ', childCallFrame.func_.data()); in OutputStdCallFrames()
486 OutputStdCallFrames(indent + CALLSTACK_INDENT, childCallFrame, callFrame.eventCount_); in OutputStdCallFrames()