Lines Matching refs:indent
126 void SampleId::Dump(size_t indent) const {
129 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, tid_data.tid);
132 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time);
135 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", id_data.id);
138 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", stream_id_data.stream_id);
141 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, cpu_data.res);
176 void Record::Dump(size_t indent) const {
177 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n",
179 DumpData(indent + 1);
180 sample_id.Dump(indent + 1);
213 void MmapRecord::DumpData(size_t indent) const {
214 PrintIndented(indent, "pid %u, tid %u, addr 0x%" PRIx64 ", len 0x%" PRIx64 "\n", data.pid,
216 PrintIndented(indent, "pgoff 0x%" PRIx64 ", filename %s\n", data.pgoff, filename.c_str());
245 void Mmap2Record::DumpData(size_t indent) const {
246 PrintIndented(indent, "pid %u, tid %u, addr 0x%" PRIx64 ", len 0x%" PRIx64 "\n", data.pid,
248 PrintIndented(indent,
251 PrintIndented(indent, "prot %u, flags %u, filenames %s\n", data.prot, data.flags,
277 void CommRecord::DumpData(size_t indent) const {
278 PrintIndented(indent, "pid %u, tid %u, comm %s\n", data.pid, data.tid, comm.c_str());
299 void ExitOrForkRecord::DumpData(size_t indent) const {
300 PrintIndented(indent, "pid %u, ppid %u, tid %u, ptid %u\n", data.pid, data.ppid, data.tid,
457 void SampleRecord::DumpData(size_t indent) const {
458 PrintIndented(indent, "sample_type: 0x%" PRIx64 "\n", sample_type);
460 PrintIndented(indent, "ip %p\n", reinterpret_cast<void*>(ip_data.ip));
463 PrintIndented(indent, "pid %u, tid %u\n", tid_data.pid, tid_data.tid);
466 PrintIndented(indent, "time %" PRId64 "\n", time_data.time);
469 PrintIndented(indent, "addr %p\n", reinterpret_cast<void*>(addr_data.addr));
472 PrintIndented(indent, "id %" PRId64 "\n", id_data.id);
475 PrintIndented(indent, "stream_id %" PRId64 "\n", stream_id_data.stream_id);
478 PrintIndented(indent, "cpu %u, res %u\n", cpu_data.cpu, cpu_data.res);
481 PrintIndented(indent, "period %" PRId64 "\n", period_data.period);
484 PrintIndented(indent, "callchain nr=%" PRIu64 "\n", callchain_data.ips.size());
486 PrintIndented(indent + 1, "0x%" PRIx64 "\n", ip);
490 PrintIndented(indent, "raw size=%zu\n", raw_data.data.size());
494 PrintIndented(indent + 1, "0x%08x (%zu)\n", data[i], data[i]);
498 PrintIndented(indent, "branch_stack nr=%" PRIu64 "\n", branch_stack_data.stack.size());
500 PrintIndented(indent
505 PrintIndented(indent, "user regs: abi=%" PRId64 "\n", regs_user_data.abi);
508 PrintIndented(indent + 1, "reg (%s) 0x%016" PRIx64 "\n",
515 PrintIndented(indent, "user stack: size %zu dyn_size %" PRIu64 "\n",
520 PrintIndented(indent + 1, "");
557 void BuildIdRecord::DumpData(size_t indent) const {
558 PrintIndented(indent, "pid %u\n", pid);
559 PrintIndented(indent, "build_id %s\n", build_id.ToString().c_str());
560 PrintIndented(indent, "filename %s\n", filename.c_str());