Home
last modified time | relevance | path

Searched refs:report_fp (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Dcmd_report.cpp914 FILE* report_fp = stdout; in PrintReport() local
916 report_fp = fopen(report_filename_.c_str(), "w"); in PrintReport()
917 if (report_fp == nullptr) { in PrintReport()
921 file_handler.reset(report_fp); in PrintReport()
923 PrintReportContext(report_fp); in PrintReport()
929 fprintf(report_fp, "\n"); in PrintReport()
933 fprintf(report_fp, "Event: %s (type %u, config %llu)\n", attr.name.c_str(), in PrintReport()
935 fprintf(report_fp, "Samples: %" PRIu64 "\n", sample_tree.total_samples); in PrintReport()
937 fprintf(report_fp, "Error Callchains: %" PRIu64 ", %f%%\n", in PrintReport()
942 fprintf(report_fp, "%s: %" PRIu64 "\n\n", period_prefix, sample_tree.total_period); in PrintReport()
[all …]
Dcmd_kmem.cpp655 FILE* report_fp = stdout; in PrintReport() local
662 report_fp = file_handler.get(); in PrintReport()
664 PrintReportContext(report_fp); in PrintReport()
666 fprintf(report_fp, "\n\n"); in PrintReport()
667 PrintSlabReportContext(report_fp); in PrintReport()
669 report_fp, slab_sample_tree_.samples, &slab_sample_tree_); in PrintReport()