/system/extras/simpleperf/ |
D | event_attr.cpp | 103 PrintIndented(indent, "event_attr: for event type %s\n", event_name.c_str()); in DumpPerfEventAttr() 105 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); in DumpPerfEventAttr() 108 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); in DumpPerfEventAttr() 110 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); in DumpPerfEventAttr() 113 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, in DumpPerfEventAttr() 116 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, in DumpPerfEventAttr() 119 PrintIndented(indent + 1, "disabled %u, inherit %u, pinned %u, exclusive %u\n", attr.disabled, in DumpPerfEventAttr() 122 PrintIndented(indent + 1, "exclude_user %u, exclude_kernel %u, exclude_hv %u\n", in DumpPerfEventAttr() 125 PrintIndented(indent + 1, "exclude_idle %u, mmap %u, mmap2 %u, comm %u, freq %u\n", in DumpPerfEventAttr() 128 PrintIndented(indent + 1, "inherit_stat %u, enable_on_exec %u, task %u\n", attr.inherit_stat, in DumpPerfEventAttr() [all …]
|
D | record.cpp | 136 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, in Dump() 140 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time); in Dump() 143 PrintIndented(indent, "sample_id: id %" PRId64 "\n", id_data.id); in Dump() 146 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", in Dump() 150 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, in Dump() 191 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump() 254 PrintIndented(indent, in DumpData() 257 PrintIndented(indent, "pgoff 0x%" PRIx64 ", filename %s\n", data->pgoff, in DumpData() 305 PrintIndented(indent, in DumpData() 308 PrintIndented(indent, "pgoff 0x%" PRIx64 ", maj %u, min %u, ino %" PRId64 in DumpData() [all …]
|
D | cmd_dumprecord.cpp | 320 PrintIndented(1, "callchain:\n"); in ProcessSampleRecord() 330 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", s.symbol->DemangledName(), s.dso->Path().c_str(), in ProcessSampleRecord() 340 PrintIndented(1, "tracepoint fields:\n"); in ProcessSampleRecord() 344 PrintIndented(2, "%s: %s\n", field.name.c_str(), s.c_str()); in ProcessSampleRecord() 352 PrintIndented(1, "callchain:\n"); in ProcessCallChainRecord() 355 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", s.symbol->DemangledName(), s.dso->Path().c_str(), in ProcessCallChainRecord() 417 PrintIndented(1, "osrelease: %s\n", s.c_str()); in DumpFeatureSection() 420 PrintIndented(1, "arch: %s\n", s.c_str()); in DumpFeatureSection() 423 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str()); in DumpFeatureSection() 432 PrintIndented(1, "file:\n"); in DumpFeatureSection() [all …]
|
D | tracing.cpp | 246 PrintIndented(indent, "tracing data:\n"); in Dump() 247 PrintIndented(indent + 1, "magic: "); in Dump() 255 PrintIndented(indent + 1, "version: %s\n", version.c_str()); in Dump() 256 PrintIndented(indent + 1, "endian: %d\n", endian); in Dump() 257 PrintIndented(indent + 1, "header_page:\n%s\n\n", header_page_file.c_str()); in Dump() 258 PrintIndented(indent + 1, "header_event:\n%s\n\n", header_event_file.c_str()); in Dump() 260 PrintIndented(indent + 1, "ftrace format file %zu/%zu:\n%s\n\n", i + 1, in Dump() 264 PrintIndented(indent + 1, "event format file %zu/%zu %s:\n%s\n\n", i + 1, in Dump() 269 PrintIndented(indent + 1, "kallsyms:\n%s\n\n", kallsyms_file.c_str()); in Dump() 270 PrintIndented(indent + 1, "printk_formats:\n%s\n\n", in Dump()
|
D | cmd_debug_unwind.cpp | 397 PrintIndented(1, "VmPeak: %s -> %s\n", stat_.mem_before_unwinding.vm_peak.c_str(), in PrintStat() 399 PrintIndented(1, "VmSize: %s -> %s\n", stat_.mem_before_unwinding.vm_size.c_str(), in PrintStat() 401 PrintIndented(1, "VmHWM: %s -> %s\n", stat_.mem_before_unwinding.vm_hwm.c_str(), in PrintStat() 403 PrintIndented(1, "VmRSS: %s -> %s\n", stat_.mem_before_unwinding.vm_rss.c_str(), in PrintStat()
|
D | utils.h | 130 void PrintIndented(size_t indent, const char* fmt, ...);
|
D | utils.cpp | 151 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() function
|