Lines Matching refs:output_
481 if (fprintf(output_, "<<Hiperf Report%s>>\n", diffMode_ ? " Diff" : "") < 0) { in OutputStd()
494 fprintf(output_, "%s: %s\n", in OutputStd()
501 fprintf(output_, "cpu off mode: enabled\n"); in OutputStd()
506 GetReport(FIRST).OutputStd(output_); in OutputStd()
510 GetReport(FIRST).OutputStdDiff(output_, GetReport(SECOND)); in OutputStd()
518 if (output_ == nullptr) { in OutputReport()
523 return reportJsonFile_->OutputJson(output_); in OutputReport()
542 output_ = fopen(resolvedPath.c_str(), "w"); in PrepareOutput()
543 if (output_ == nullptr) { in PrepareOutput()
550 output_ = stdout; in PrepareOutput()
563 if (output_ != nullptr && output_ != stdout) { in ~SubCommandReport()
564 fclose(output_); in ~SubCommandReport()