Searched refs:FprintIndented (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/ |
D | cmd_report_sample.cpp | 347 FprintIndented(report_fp_, 0, "magic: %s\n", magic); in DumpProtobufReport() 353 FprintIndented(report_fp_, 0, "version: %u\n", version); in DumpProtobufReport() 389 FprintIndented(report_fp_, 0, "sample %zu:\n", ++sample_count); in DumpProtobufReport() 390 FprintIndented(report_fp_, 1, "event_type_id: %zu\n", sample.event_type_id()); in DumpProtobufReport() 391 FprintIndented(report_fp_, 1, "time: %" PRIu64 "\n", sample.time()); in DumpProtobufReport() 392 FprintIndented(report_fp_, 1, "event_count: %" PRIu64 "\n", sample.event_count()); in DumpProtobufReport() 393 FprintIndented(report_fp_, 1, "thread_id: %d\n", sample.thread_id()); in DumpProtobufReport() 394 FprintIndented(report_fp_, 1, "callchain:\n"); in DumpProtobufReport() 397 FprintIndented(report_fp_, 2, "vaddr_in_file: %" PRIx64 "\n", callchain.vaddr_in_file()); in DumpProtobufReport() 398 FprintIndented(report_fp_, 2, "file_id: %u\n", callchain.file_id()); in DumpProtobufReport() [all …]
|
D | utils.h | 152 void FprintIndented(FILE* fp, size_t indent, const char* fmt, ...);
|
D | utils.cpp | 167 void FprintIndented(FILE* fp, size_t indent, const char* fmt, ...) { in FprintIndented() function
|