Searched refs:FprintIndented (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/ |
D | cmd_report_sample.cpp | 294 FprintIndented(report_fp_, 0, "magic: %s\n", magic); in DumpProtobufReport() 300 FprintIndented(report_fp_, 0, "version: %u\n", version); in DumpProtobufReport() 336 FprintIndented(report_fp_, 0, "sample %zu:\n", ++sample_count); in DumpProtobufReport() 337 FprintIndented(report_fp_, 1, "event_type_id: %zu\n", sample.event_type_id()); in DumpProtobufReport() 338 FprintIndented(report_fp_, 1, "time: %" PRIu64 "\n", sample.time()); in DumpProtobufReport() 339 FprintIndented(report_fp_, 1, "event_count: %" PRIu64 "\n", sample.event_count()); in DumpProtobufReport() 340 FprintIndented(report_fp_, 1, "thread_id: %d\n", sample.thread_id()); in DumpProtobufReport() 341 FprintIndented(report_fp_, 1, "callchain:\n"); in DumpProtobufReport() 344 FprintIndented(report_fp_, 2, "vaddr_in_file: %" PRIx64 "\n", in DumpProtobufReport() 346 FprintIndented(report_fp_, 2, "file_id: %u\n", callchain.file_id()); in DumpProtobufReport() [all …]
|
D | utils.h | 130 void FprintIndented(FILE* fp, size_t indent, const char* fmt, ...);
|
D | utils.cpp | 160 void FprintIndented(FILE* fp, size_t indent, const char* fmt, ...) { in FprintIndented() function
|