Lines Matching refs:indent
297 bool ReportProtobufFileReader::Dump(const CallStackSample &message, int indent)
299 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str());
301 PRINT_INDENT(indent + 1, "time:%" PRId64 "\n", message.time());
304 PRINT_INDENT(indent + 1, "tid:%u\n", message.tid());
307 PRINT_INDENT(indent + 1, "%d:\n", i);
310 PRINT_INDENT(indent + INDENT_TWO, "symbols_vaddr: 0x%" PRIx64 " \n",
314 PRINT_INDENT(indent + INDENT_TWO, "symbols_file_id: %u\n", callframe.symbols_file_id());
317 PRINT_INDENT(indent + INDENT_TWO, "function_name_id: %d\n", callframe.function_name_id());
321 PRINT_INDENT(indent + 1, "event_count:%" PRIu64 "\n", message.event_count());
324 PRINT_INDENT(indent + 1, "config_name_id:%u\n", message.config_name_id());
329 bool ReportProtobufFileReader::Dump(const SampleStatistic &message, int indent)
331 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str());
333 PRINT_INDENT(indent + 1, "count:%" PRIu64 "\n", message.count());
336 PRINT_INDENT(indent + 1, "lost:%" PRIu64 "\n", message.lost());
341 bool ReportProtobufFileReader::Dump(const SymbolTableFile &message, int indent)
343 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str());
345 PRINT_INDENT(indent + 1, "id: %u\n", message.id());
348 PRINT_INDENT(indent + 1, "path: %s\n", message.path().c_str());
351 PRINT_INDENT(indent + INDENT_TWO, "%d:%s\n", i, message.function_name(i).c_str());
355 bool ReportProtobufFileReader::Dump(const VirtualThreadInfo &message, int indent)
357 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str());
359 PRINT_INDENT(indent + 1, "pid:%u\n", message.pid());
362 PRINT_INDENT(indent + 1, "tid:%u\n", message.tid());
365 PRINT_INDENT(indent + 1, "name:%s\n", message.name().c_str());
369 bool ReportProtobufFileReader::Dump(const ReportInfo &message, int indent)
371 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str());
373 PRINT_INDENT(indent + 1, "config_name:%d:%s\n", i, message.config_name(i).c_str());
376 PRINT_INDENT(indent + 1, "workload:%s\n", message.workload_cmd().c_str());
380 bool ReportProtobufFileReader::Dump(const HiperfRecord &record, int indent)
382 PRINT_INDENT(indent, "%s:\n", record.GetTypeName().c_str());
384 return Dump(record.sample(), indent + 1);
386 return Dump(record.statistic(), indent + 1);
388 return Dump(record.file(), indent + 1);
390 return Dump(record.thread(), indent + 1);
392 return Dump(record.info(), indent + 1);