Home
last modified time | relevance | path

Searched refs:PrintIndented (Results 1 – 6 of 6) sorted by relevance

/system/extras/simpleperf/
Devent_attr.cpp105 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 …]
Drecord.cpp137 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 …]
Dcmd_dumprecord.cpp372 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 …]
Dtracing.cpp251 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()
Dutils.h151 void PrintIndented(size_t indent, const char* fmt, ...);
Dutils.cpp159 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() function