Lines Matching refs:output_
494 if (fprintf(output_, "<<Hiperf Report%s>>\n", diffMode_ ? " Diff" : "") < 0) { in OutputStd()
507 fprintf(output_, "%s: %s\n", in OutputStd()
514 fprintf(output_, "cpu off mode: enabled\n"); in OutputStd()
519 GetReport(FIRST).OutputStd(output_); in OutputStd()
523 GetReport(FIRST).OutputStdDiff(output_, GetReport(SECOND)); in OutputStd()
531 if (output_ == nullptr) { in OutputReport()
536 return reportJsonFile_->OutputJson(output_); in OutputReport()
560 output_ = fopen(resolvedPath.c_str(), "w"); in PrepareOutput()
561 if (output_ == nullptr) { in PrepareOutput()
568 output_ = stdout; in PrepareOutput()
581 if (output_ != nullptr && output_ != stdout) { in ~SubCommandReport()
582 fclose(output_); in ~SubCommandReport()