/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 | cmd_dumprecord.cpp | 186 PrintIndented(1, "callchain:\n"); in DumpDataSection() 199 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", symbol_name.c_str(), dso_name.c_str(), in DumpDataSection() 205 PrintIndented(1, "callchain:\n"); in DumpDataSection() 212 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", symbol_name.c_str(), dso_name.c_str(), in DumpDataSection() 235 PrintIndented(1, "osrelease: %s\n", s.c_str()); in DumpFeatureSection() 238 PrintIndented(1, "arch: %s\n", s.c_str()); in DumpFeatureSection() 241 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str()); in DumpFeatureSection() 250 PrintIndented(1, "file:\n"); in DumpFeatureSection() 254 PrintIndented(2, "file_path %s\n", file_path.c_str()); in DumpFeatureSection() 255 PrintIndented(2, "file_type %s\n", DsoTypeToString(static_cast<DsoType>(file_type))); in DumpFeatureSection() [all …]
|
D | record.cpp | 133 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, in Dump() 137 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time); in Dump() 140 PrintIndented(indent, "sample_id: id %" PRId64 "\n", id_data.id); in Dump() 143 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", in Dump() 147 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, in Dump() 188 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump() 251 PrintIndented(indent, in DumpData() 254 PrintIndented(indent, "pgoff 0x%" PRIx64 ", filename %s\n", data->pgoff, in DumpData() 302 PrintIndented(indent, in DumpData() 305 PrintIndented(indent, "pgoff 0x%" PRIx64 ", maj %u, min %u, ino %" PRId64 in DumpData() [all …]
|
D | tracing.cpp | 249 PrintIndented(indent, "tracing data:\n"); in Dump() 250 PrintIndented(indent + 1, "magic: "); in Dump() 258 PrintIndented(indent + 1, "version: %s\n", version.c_str()); in Dump() 259 PrintIndented(indent + 1, "endian: %d\n", endian); in Dump() 260 PrintIndented(indent + 1, "header_page:\n%s\n\n", header_page_file.c_str()); in Dump() 261 PrintIndented(indent + 1, "header_event:\n%s\n\n", header_event_file.c_str()); in Dump() 263 PrintIndented(indent + 1, "ftrace format file %zu/%zu:\n%s\n\n", i + 1, in Dump() 267 PrintIndented(indent + 1, "event format file %zu/%zu %s:\n%s\n\n", i + 1, in Dump() 272 PrintIndented(indent + 1, "kallsyms:\n%s\n\n", kallsyms_file.c_str()); in Dump() 273 PrintIndented(indent + 1, "printk_formats:\n%s\n\n", in Dump()
|
D | cmd_debug_unwind.cpp | 398 PrintIndented(1, "VmPeak: %s -> %s\n", stat_.mem_before_unwinding.vm_peak.c_str(), in PrintStat() 400 PrintIndented(1, "VmSize: %s -> %s\n", stat_.mem_before_unwinding.vm_size.c_str(), in PrintStat() 402 PrintIndented(1, "VmHWM: %s -> %s\n", stat_.mem_before_unwinding.vm_hwm.c_str(), in PrintStat() 404 PrintIndented(1, "VmRSS: %s -> %s\n", stat_.mem_before_unwinding.vm_rss.c_str(), in PrintStat()
|
D | utils.h | 129 void PrintIndented(size_t indent, const char* fmt, ...);
|
D | utils.cpp | 152 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() function
|