Lines Matching refs:indent
395 bool Report::OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount,
400 HLOGV("frame %f indent %d at %s", heat, indent, funcName.data());
405 fprintf(output_, "%*s", indent, " ");
408 fprintf(output_, "%*s", indent, "|- ");
442 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, uint64_t totalEventCount)
455 CHECK_TRUE(!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount),
460 OutputStdCallFrame(indent + CALLSTACK_INDENT, "[run in self function]",
468 HLOGV("childCallFream %*c %s", indent, ' ', callFrame.childs[0].func_.data());
469 // don't indent if same count (only one 100% children)
470 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_);
474 HLOGV("childCallFream %*c %s", indent, ' ', childCallFrame.func_.data());
475 OutputStdCallFrames(indent + CALLSTACK_INDENT, childCallFrame, callFrame.eventCount_);