Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Devent_attr.cpp102 PrintIndented(indent, "event_attr: for event type %s\n", event_name.c_str()); in DumpPerfEventAttr()
104 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); in DumpPerfEventAttr()
107 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); in DumpPerfEventAttr()
109 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); in DumpPerfEventAttr()
112 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, in DumpPerfEventAttr()
115 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, in DumpPerfEventAttr()
118 PrintIndented(indent + 1, "disabled %u, inherit %u, pinned %u, exclusive %u\n", attr.disabled, in DumpPerfEventAttr()
121 PrintIndented(indent + 1, "exclude_user %u, exclude_kernel %u, exclude_hv %u\n", in DumpPerfEventAttr()
124 PrintIndented(indent + 1, "exclude_idle %u, mmap %u, comm %u, freq %u\n", attr.exclude_idle, in DumpPerfEventAttr()
127 PrintIndented(indent + 1, "inherit_stat %u, enable_on_exec %u, task %u\n", attr.inherit_stat, in DumpPerfEventAttr()
[all …]
Drecord.cpp127 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, in Dump()
131 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time); in Dump()
134 PrintIndented(indent, "sample_id: id %" PRId64 "\n", id_data.id); in Dump()
137 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", in Dump()
141 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, in Dump()
182 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump()
245 PrintIndented(indent, in DumpData()
248 PrintIndented(indent, "pgoff 0x%" PRIx64 ", filename %s\n", data->pgoff, in DumpData()
281 PrintIndented(indent, in DumpData()
284 PrintIndented(indent, "pgoff 0x" PRIx64 ", maj %u, min %u, ino %" PRId64 in DumpData()
[all …]
Dcmd_dumprecord.cpp197 PrintIndented(1, "osrelease: %s\n", s.c_str()); in DumpFeatureSection()
200 PrintIndented(1, "arch: %s\n", s.c_str()); in DumpFeatureSection()
203 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str()); in DumpFeatureSection()
210 PrintIndented(1, "file:\n"); in DumpFeatureSection()
214 PrintIndented(2, "file_path %s\n", file_path.c_str()); in DumpFeatureSection()
215 PrintIndented(2, "file_type %s\n", DsoTypeToString(static_cast<DsoType>(file_type))); in DumpFeatureSection()
216 PrintIndented(2, "min_vaddr 0x%" PRIx64 "\n", min_vaddr); in DumpFeatureSection()
217 PrintIndented(2, "symbols:\n"); in DumpFeatureSection()
219 PrintIndented(3, "%s [0x%" PRIx64 "-0x%" PRIx64 "]\n", symbol.DemangledName(), in DumpFeatureSection()
Dtracing.cpp248 PrintIndented(indent, "tracing data:\n"); in Dump()
249 PrintIndented(indent + 1, "magic: "); in Dump()
257 PrintIndented(indent + 1, "version: %s\n", version.c_str()); in Dump()
258 PrintIndented(indent + 1, "endian: %d\n", endian); in Dump()
259 PrintIndented(indent + 1, "header_page:\n%s\n\n", header_page_file.c_str()); in Dump()
260 PrintIndented(indent + 1, "header_event:\n%s\n\n", header_event_file.c_str()); in Dump()
262 PrintIndented(indent + 1, "ftrace format file %zu/%zu:\n%s\n\n", i + 1, in Dump()
266 PrintIndented(indent + 1, "event format file %zu/%zu %s:\n%s\n\n", i + 1, in Dump()
271 PrintIndented(indent + 1, "kallsyms:\n%s\n\n", kallsyms_file.c_str()); in Dump()
272 PrintIndented(indent + 1, "printk_formats:\n%s\n\n", in Dump()
Dutils.h138 void PrintIndented(size_t indent, const char* fmt, ...);
Dutils.cpp95 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() function