Lines Matching refs:output_
324 if (fprintf(output_, "\n") < 0) { in OutputStdStatistics()
327 if (fprintf(output_, "Event: %s (type %" PRIu32 " id %" PRIu64 ")\n", config.eventName_.c_str(), in OutputStdStatistics()
331 if (fprintf(output_, "Samples Count: %" PRIu64 "\n", config.sampleCount_) < 0) { in OutputStdStatistics()
335 fprintf(output_, "Time in ns: "); in OutputStdStatistics()
337 fprintf(output_, "Event Count: "); in OutputStdStatistics()
339 fprintf(output_, "%" PRIu64 "\n", config.eventCount_); in OutputStdStatistics()
345 fprintf(output_, "diff config unable compare\n"); in OutputStdStatistics()
348 fprintf(output_, "Event: %s (type %" PRIu32 " id %" PRIu64 ")", config.eventName_.c_str(), in OutputStdStatistics()
350 fprintf(output_, "Samples Count: %" PRIu64 " vs %" PRIu64 "\n", config.sampleCount_, in OutputStdStatistics()
353 fprintf(output_, "Time in ns: "); in OutputStdStatistics()
355 fprintf(output_, "Event Count: "); in OutputStdStatistics()
357 fprintf(output_, "%" PRIu64 " vs %" PRIu64 "\n", config.eventCount_, otherConfig.eventCount_); in OutputStdStatistics()
365 if (fprintf(output_, "%-*s ", FULL_PERCENTAGE_LEN, head.c_str()) < 0) { in OutputStdHead()
371 fprintf(output_, "%-*s ", FULL_PERCENTAGE_DIFF_LEN, diff.c_str()); in OutputStdHead()
389 if (fprintf(output_, "%-*s ", (remainingWidth > 0) ? static_cast<int>(key.maxLen_) : 0, in OutputStdHead()
396 if (fprintf(output_, "\n") < 0) { in OutputStdHead()
414 fprintf(output_, "%*s", indent, " "); in OutputStdCallFrame()
415 fprintf(output_, "%*s ", FULL_PERCENTAGE_NUM_LEN, " "); in OutputStdCallFrame()
417 fprintf(output_, "%*s", indent, "|- "); in OutputStdCallFrame()
418 fprintf(output_, "%*.2f%% ", FULL_PERCENTAGE_NUM_LEN, heat); in OutputStdCallFrame()
421 fprintf(output_, "%" PRIu64 "/%" PRIu64 " %s\n", eventCount, totalEventCount, in OutputStdCallFrame()
424 fprintf(output_, "%s\n", funcName.data()); in OutputStdCallFrame()
502 fprintf(output_, "%*.2f%% ", FULL_PERCENTAGE_NUM_LEN, reportItem.heat); in OutputStdContent()
522 if (fprintf(output_, "%s ", reportKey.GetValue(reportItem).c_str()) < 0) { in OutputStdContentItem()
526 if (fprintf(output_, "\n") < 0) { in OutputStdContentItem()
534 fprintf(output_, "something error , all it is end.\n"); in OutputStdItemHeating()
537 fprintf(output_, "%*.2f%% ", FULL_PERCENTAGE_NUM_LEN, heat); in OutputStdItemHeating()
538 fprintf(output_, "%*s ", FULL_PERCENTAGE_DIFF_LEN, ""); in OutputStdItemHeating()
541 fprintf(output_, "%*s ", FULL_PERCENTAGE_LEN, ""); in OutputStdItemHeating()
542 fprintf(output_, "%+*.2f%% ", FULL_PERCENTAGE_DIFF_NUM_LEN, heat2); in OutputStdItemHeating()
544 fprintf(output_, "%s%*.2f%%%s ", TEXT_RED.c_str(), FULL_PERCENTAGE_NUM_LEN, heat, in OutputStdItemHeating()
546 fprintf(output_, "%s%+*.2f%%%s ", TEXT_GREEN.c_str(), FULL_PERCENTAGE_DIFF_NUM_LEN, in OutputStdItemHeating()
549 fprintf(output_, "%s%*.2f%%%s ", TEXT_GREEN.c_str(), FULL_PERCENTAGE_NUM_LEN, heat, in OutputStdItemHeating()
551 fprintf(output_, "%s%+*.2f%%%s ", TEXT_RED.c_str(), FULL_PERCENTAGE_DIFF_NUM_LEN, in OutputStdItemHeating()
555 fprintf(output_, "%*.2f%% ", FULL_PERCENTAGE_NUM_LEN, heat); in OutputStdItemHeating()
556 fprintf(output_, "%+*.2f%% ", FULL_PERCENTAGE_DIFF_NUM_LEN, heat2 - heat); in OutputStdItemHeating()
611 output_ = output; in OutputStd()
623 output_ = output; in OutputStdDiff()