Lines Matching refs:output

360     std::string output = formatLine(name, size, pruned);  in format()  local
363 return output; in format()
385 output += formatLine(std::string(" PID/UID COMMAND LINE"), ditto, std::string("")); in format()
386 output += byPid; in format()
389 return output; in format()
515 std::string output; in formatMsec() local
516 if (val < sec) return output; in formatMsec()
519 output = android::base::StringPrintf("%" PRIu64 "d ", val / day); in formatMsec()
524 output += android::base::StringPrintf("%" PRIu64 ":", in formatMsec()
527 output += android::base::StringPrintf( in formatMsec()
531 output += in formatMsec()
541 output += android::base::StringPrintf(".%0*" PRIu64, digits, val); in formatMsec()
543 return output; in formatMsec()
551 std::string output; in FormatTable() local
565 output += "\n\n"; in FormatTable()
566 output += entry->formatHeader(name, id); in FormatTable()
569 output += entry->format(*this, id, *sorted_keys[index]); in FormatTable()
571 return output; in FormatTable()
606 std::string output = "size/num"; in Format() local
612 oldLength = output.length(); in Format()
614 output += android::base::StringPrintf("%*s%s", spaces, "", in Format()
616 spaces += spaces_total + oldLength - output.length(); in Format()
619 output += android::base::StringPrintf("%*sTotal", spaces, ""); in Format()
623 output += TotalStr; in Format()
629 oldLength = output.length(); in Format()
635 output += in Format()
637 spaces += spaces_total + oldLength - output.length(); in Format()
640 output += android::base::StringPrintf("%*s%zu/%zu", spaces, "", totalSize, in Format()
645 output += NowStr; in Format()
653 oldLength = output.length(); in Format()
658 output += android::base::StringPrintf("%*s%zu/%zu", spaces, "", szs, els); in Format()
659 spaces -= output.length() - oldLength; in Format()
663 output += android::base::StringPrintf("%*s%zu/%zu", spaces, "", totalSize, in Format()
668 output += SpanStr; in Format()
700 oldLength = output.length(); in Format()
701 output += android::base::StringPrintf("%*s%s", spaces, "", formatMsec(span).c_str()); in Format()
702 spaces -= output.length() - oldLength; in Format()
710 output += android::base::StringPrintf("%*s%s", spaces, "", in Format()
715 output += OverheadStr; in Format()
723 oldLength = output.length(); in Format()
733 output += android::base::StringPrintf("%*s%zu", spaces, "", szs); in Format()
734 spaces -= output.length() - oldLength; in Format()
740 output += android::base::StringPrintf("%*s%zu", spaces, "", totalSize); in Format()
752 output += FormatTable(uidTable[id], uid, pid, name, id); in Format()
758 output += FormatTable(pidTable, uid, pid, name); in Format()
762 output += FormatTable(tidTable, uid, pid, name); in Format()
769 output += FormatTable(tagTable, uid, pid, name, LOG_ID_EVENTS); in Format()
776 output += FormatTable(securityTagTable, uid, pid, name, LOG_ID_SECURITY); in Format()
783 output += FormatTable(tagNameTable, uid, pid, name); in Format()
786 return output; in Format()