/system/extras/simpleperf/ |
D | event_attr.cpp | 105 PrintIndented(indent, "event_attr: for event type %s\n", event_name.c_str()); in DumpPerfEventAttr() 107 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); in DumpPerfEventAttr() 110 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); in DumpPerfEventAttr() 112 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); in DumpPerfEventAttr() 115 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, in DumpPerfEventAttr() 118 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, in DumpPerfEventAttr() 121 PrintIndented(indent + 1, "disabled %u, inherit %u, pinned %u, exclusive %u\n", attr.disabled, in DumpPerfEventAttr() 124 PrintIndented(indent + 1, "exclude_user %u, exclude_kernel %u, exclude_hv %u\n", in DumpPerfEventAttr() 127 PrintIndented(indent + 1, "exclude_idle %u, mmap %u, mmap2 %u, comm %u, freq %u\n", in DumpPerfEventAttr() 130 PrintIndented(indent + 1, "inherit_stat %u, enable_on_exec %u, task %u\n", attr.inherit_stat, in DumpPerfEventAttr() [all …]
|
D | record.cpp | 137 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, tid_data.tid); 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", stream_id_data.stream_id); in Dump() 149 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, cpu_data.res); in Dump() 189 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump() 254 PrintIndented(indent, "pid %u, tid %u, addr 0x%" PRIx64 ", len 0x%" PRIx64 "\n", data->pid, in DumpData() 256 PrintIndented(indent, "pgoff 0x%" PRIx64 ", filename %s\n", data->pgoff, filename); in DumpData() 301 PrintIndented(indent, "pid %u, tid %u, addr 0x%" PRIx64 ", len 0x%" PRIx64 "\n", data->pid, in DumpData() 303 PrintIndented( in DumpData() [all …]
|
D | cmd_dumprecord.cpp | 372 PrintIndented(1, "callchain:\n"); in ProcessSampleRecord() 382 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", s.symbol->DemangledName(), s.dso->Path().c_str(), in ProcessSampleRecord() 391 PrintIndented(1, "tracepoint fields:\n"); in ProcessSampleRecord() 395 PrintIndented(2, "%s: %s\n", field.name.c_str(), s.c_str()); in ProcessSampleRecord() 402 PrintIndented(1, "callchain:\n"); in ProcessCallChainRecord() 405 PrintIndented(2, "%s (%s[+%" PRIx64 "])\n", s.symbol->DemangledName(), s.dso->Path().c_str(), in ProcessCallChainRecord() 467 PrintIndented(1, "osrelease: %s\n", s.c_str()); in DumpFeatureSection() 470 PrintIndented(1, "arch: %s\n", s.c_str()); in DumpFeatureSection() 473 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str()); in DumpFeatureSection() 477 PrintIndented(1, "file:\n"); in DumpFeatureSection() [all …]
|
D | tracing.cpp | 251 PrintIndented(indent, "tracing data:\n"); in Dump() 252 PrintIndented(indent + 1, "magic: "); in Dump() 260 PrintIndented(indent + 1, "version: %s\n", version.c_str()); in Dump() 261 PrintIndented(indent + 1, "endian: %d\n", endian); in Dump() 262 PrintIndented(indent + 1, "header_page:\n%s\n\n", header_page_file.c_str()); in Dump() 263 PrintIndented(indent + 1, "header_event:\n%s\n\n", header_event_file.c_str()); in Dump() 265 PrintIndented(indent + 1, "ftrace format file %zu/%zu:\n%s\n\n", i + 1, in Dump() 269 PrintIndented(indent + 1, "event format file %zu/%zu %s:\n%s\n\n", i + 1, in Dump() 273 PrintIndented(indent + 1, "kallsyms:\n%s\n\n", kallsyms_file.c_str()); in Dump() 274 PrintIndented(indent + 1, "printk_formats:\n%s\n\n", printk_formats_file.c_str()); in Dump()
|
D | utils.h | 151 void PrintIndented(size_t indent, const char* fmt, ...);
|
D | utils.cpp | 159 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() function
|