/developtools/hiperf/src/ |
D | subcommand_dump.cpp | 219 void SubCommandDump::PrintHeaderInfo(const int &indent) in PrintHeaderInfo() argument 223 PRINT_INDENT(indent, "magic: "); in PrintHeaderInfo() 225 PRINT_INDENT(indent, "%c", header.magic[i]); in PrintHeaderInfo() 227 PRINT_INDENT(indent, "\n"); in PrintHeaderInfo() 228 PRINT_INDENT(indent, "header_size: %" PRId64 "\n", header.size); in PrintHeaderInfo() 232 PRINT_INDENT(indent, "attr_size: %" PRId64 "\n", header.attrSize); in PrintHeaderInfo() 237 PRINT_INDENT(indent, "attrs[file section]: offset %" PRId64 ", size %" PRId64 "\n", in PrintHeaderInfo() 240 PRINT_INDENT(indent, "data[file section]: offset %" PRId64 ", size %" PRId64 "\n", in PrintHeaderInfo() 242 PRINT_INDENT(indent, "event_types[file section]: offset %" PRId64 ", size %" PRId64 "\n", in PrintHeaderInfo() 245 PRINT_INDENT(indent, in PrintHeaderInfo() [all …]
|
D | report_protobuf_file.cpp | 297 bool ReportProtobufFileReader::Dump(const CallStackSample &message, int indent) in Dump() argument 299 PRINT_INDENT(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() 301 PRINT_INDENT(indent + 1, "time:%" PRId64 "\n", message.time()); in Dump() 304 PRINT_INDENT(indent + 1, "tid:%u\n", message.tid()); in Dump() 307 PRINT_INDENT(indent + 1, "%d:\n", i); in Dump() 310 PRINT_INDENT(indent + INDENT_TWO, "symbols_vaddr: 0x%" PRIx64 " \n", in Dump() 314 PRINT_INDENT(indent + INDENT_TWO, "symbols_file_id: %u\n", callframe.symbols_file_id()); in Dump() 317 … PRINT_INDENT(indent + INDENT_TWO, "function_name_id: %d\n", callframe.function_name_id()); in Dump() 321 PRINT_INDENT(indent + 1, "event_count:%" PRIu64 "\n", message.event_count()); in Dump() 324 PRINT_INDENT(indent + 1, "config_name_id:%u\n", message.config_name_id()); in Dump() [all …]
|
D | perf_event_record.cpp | 185 void PerfEventRecord::Dump(int indent, std::string outputFilename, FILE *outputDump) const in Dump() argument 197 PRINT_INDENT(indent, "\n"); in Dump() 198 PRINT_INDENT(indent, "record %s: type %u, misc %u, size %zu\n", GetName().c_str(), GetType(), in Dump() 200 DumpData(indent + 1); in Dump() 415 void PerfRecordSample::DumpData(int indent) const in DumpData() 417 PRINT_INDENT(indent, "sample_type: 0x%" PRIx64 "\n", sampleType_); in DumpData() 421 PRINT_INDENT(indent, "ID %" PRIu64 "\n", static_cast<uint64_t>(data_.sample_id)); in DumpData() 424 PRINT_INDENT(indent, "ip %llx\n", data_.ip); in DumpData() 427 PRINT_INDENT(indent, "pid %u, tid %u\n", data_.pid, data_.tid); in DumpData() 430 PRINT_INDENT(indent, "time %llu\n", data_.time); in DumpData() [all …]
|
D | report.cpp | 408 bool Report::OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount, in OutputStdCallFrame() argument 413 HLOGV("frame %f indent %d at %s", heat, indent, funcName.data()); in OutputStdCallFrame() 421 fprintf(output_, "%*s", indent, " "); in OutputStdCallFrame() 424 fprintf(output_, "%*s", indent, "|- "); in OutputStdCallFrame() 458 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, uint64_t totalEv… in OutputStdCallFrames() argument 470 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames() 477 OutputStdCallFrame(indent + CALLSTACK_INDENT, "[run in self function]", in OutputStdCallFrames() 485 HLOGV("childCallFream %*c %s", indent, ' ', callFrame.childs[0].func_.data()); in OutputStdCallFrames() 487 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_); in OutputStdCallFrames() 491 HLOGV("childCallFream %*c %s", indent, ' ', childCallFrame.func_.data()); in OutputStdCallFrames() [all …]
|
/developtools/hiperf/include/ |
D | subcommand_dump.h | 76 static void DumpPrintEventAttr(const perf_event_attr &attr, int indent = 0); 80 static void DumpSampleType(uint64_t sampleType, int indent); 107 void DumpPrintFileHeader(int indent = 0); 108 void DumpAttrPortion(int indent = 0); 109 void DumpDataPortion(int indent = 0); 110 void DumpCallChain(int indent, std::unique_ptr<PerfRecordSample> &sample); 111 void DumpFeaturePortion(int indent = 0); 112 void DumpUniqueStackTableNode(int indent, const PerfFileSectionUniStackTable &uniStackTable); 115 void PrintHeaderInfo(const int &indent); 116 void PrintSymbolFile(const int &indent, const SymbolFileStruct &symbolFileStruct); [all …]
|
D | perf_event_record.h | 156 void Dump(int indent = 0, std::string outputFilename = "", FILE *outputDump = nullptr) const; 157 virtual void DumpData(int indent) const = 0; 182 void DumpData(int indent) const override; 198 void DumpData(int indent) const override; 210 void DumpData(int indent) const override; 231 void DumpData(int indent) const override; 254 void DumpData(int indent = 0) const override; 287 void DumpData(int indent) const override; 297 void DumpData(int indent) const override; 307 void DumpData(int indent) const override; [all …]
|
D | report_protobuf_file.h | 90 bool Dump(const Proto::HiperfRecord &record, int indent = 0); 91 bool Dump(const Proto::CallStackSample &message, int indent = 0); 92 bool Dump(const Proto::SampleStatistic &message, int indent = 0); 93 bool Dump(const Proto::SymbolTableFile &message, int indent = 0); 94 bool Dump(const Proto::VirtualThreadInfo &message, int indent = 0); 95 bool Dump(const Proto::ReportInfo &message, int indent = 0);
|
D | report.h | 67 static void OrderCallFrames(std::vector<ReportItemCallFrame> &callframes, int indent = 2) 75 HLOGDUMMY("%*s%s", indent, "", callframe.ToDebugString().c_str()); 77 OrderCallFrames(callframe.childs, indent + i); 84 static void DumpCallFrames(std::vector<ReportItemCallFrame> &callframes, int indent = 2) 89 HLOGV("%*s%s", indent, "", callframe.ToDebugString().c_str()); 91 DumpCallFrames(callframe.childs, indent + y); 554 …void OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, uint64_t totalEventCoun… 555 bool OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount,
|
D | utilities.h | 312 #define PRINT_INDENT(indent, format, ...) \ argument 313 if (indent >= 0) { \ 315 printf("%*s" format, (indent)*2, "", ##__VA_ARGS__); \ 317 fprintf(g_outputDump, "%*s" format, (indent)*2, "", ##__VA_ARGS__); \
|
/developtools/profiler/device/plugins/native_daemon/include/ |
D | utilities.h | 303 #define INDENT_ONE_LEVEL (indent + 1) 304 #define INDENT_TWO_LEVEL (indent + 2) 306 #define PrintIndent(indent, format, ...) \ argument 307 if (indent >= 0) { \ 308 printf("%*s" format, (indent)*2, "", ##__VA_ARGS__); \
|
/developtools/profiler/hiebpf/scripts/ |
D | fstrace_code_generator.py | 344 indent = " " 354 var_decl_str = "{}{}* args = &fs_se->{};\n".format(indent, args_type, args_var_name) 363 assignment_str = "{}args->{} = {};\n".format(indent, member_name, member_name) 366 assignment_str, indent)
|
/developtools/integration_verification/tools/components/ |
D | get_components.py | 44 json.dump(components, fd, indent=4)
|
/developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/inlineStyle/ |
D | inlineStyle.hml | 27 <div style="text-indent: 50px;">style_test13</div>
|
/developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/exteriorStyle/ |
D | exteriorStyle.css | 45 text-indent: 50px;
|
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
D | rom_analysis.py | 67 json.dump(rom_ram_baseline, f, indent=4) 83 json.dump(rom_size_dict, f, indent=4) 98 json.dump(result_dict, f, indent=4) 105 json.dump(product_dict, f, indent=4)
|
D | get_subsystem_component.py | 83 subsystem_item, indent=4, separators=(', ', ': '))
|
/developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/inlineStyle/ |
D | inlineStyle.hml | 39 <div style="text-indent: 50px;">style_test13</div>
|
/developtools/ace_js2bundle/ace-loader/plugin/codegen/ |
D | index.js | 1 …indent=t,this.flag=!0,this.INDENT=e}indentOn(){this.flag=!0}indentOff(){this.flag=!1}incIndent(){t…
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
D | rom_analyzer.py | 94 json.dump(rom_baseline_dict, f, indent=4) 126 f.write(json.dumps(result_dict, indent=4))
|
/developtools/ace_ets2bundle/compiler/ |
D | .eslintrc | 46 "indent": [2, 2, { "SwitchCase": 1 }],
|
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/module_info/ |
D | compile_info_loader.py | 76 res = json.dumps(unknown_items, indent=4)
|
/developtools/integration_verification/tools/deps_guard/rules_checker/ |
D | chipsetsdk.py | 145 json.dump(headers, f, indent=4)
|
/developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/exteriorStyle/ |
D | exteriorStyle.css | 71 text-indent: 50px;
|
/developtools/integration_verification/tools/components_deps/ |
D | components_deps_analyzer.py | 59 json.dump(result, fd, indent=4, ensure_ascii=False)
|
/developtools/hapsigner/tools/ |
D | auto_test.py | 353 tr.write(json.dumps(test_result_dict, indent=4))
|