| /developtools/hiperf/include/ |
| D | subcommand_dump.h | 77 static void DumpPrintEventAttr(const perf_event_attr &attr, int indent = 0); 81 static void DumpSampleType(uint64_t sampleType, int indent); 108 void DumpPrintFileHeader(int indent = 0); 109 void DumpAttrPortion(int indent = 0); 110 void DumpDataPortion(int indent = 0); 111 void DumpCallChain(int indent, std::unique_ptr<PerfRecordSample> &sample); 112 void DumpFeaturePortion(int indent = 0); 113 void DumpUniqueStackTableNode(int indent, const PerfFileSectionUniStackTable &uniStackTable); 116 void PrintHeaderInfo(const int &indent); 117 void PrintSymbolFile(const int &indent, const SymbolFileStruct &symbolFileStruct); [all …]
|
| D | perf_event_record.h | 155 void Dump(int indent = 0, std::string outputFilename = "", FILE *outputDump = nullptr) const; 156 virtual void DumpData(int indent) const = 0; 181 void DumpData(int indent) const override; 197 void DumpData(int indent) const override; 209 void DumpData(int indent) const override; 230 void DumpData(int indent) const override; 253 void DumpData(int indent = 0) const override; 286 void DumpData(int indent) const override; 296 void DumpData(int indent) const override; 306 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 | utilities.h | 313 #define INDENT_ONE_LEVEL (indent + 1) 314 #define INDENT_TWO_LEVEL (indent + 2) 316 #define PrintIndent(indent, format, ...) \ argument 317 if (indent >= 0) { \ 319 printf("%*s" format, (indent)*2, "", ##__VA_ARGS__); \ 321 fprintf(outputDump_, "%*s" format, (indent)*2, "", ##__VA_ARGS__); \
|
| 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); 553 void OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrames, 555 bool OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount,
|
| /developtools/hiperf/src/ |
| D | subcommand_dump.cpp | 38 #define LEVEL1 (indent + 1) 39 #define LEVEL2 (indent + 2) 40 #define LEVEL3 (indent + 3) 220 void SubCommandDump::PrintHeaderInfo(const int &indent) in PrintHeaderInfo() argument 224 PrintIndent(indent, "magic: "); in PrintHeaderInfo() 226 PrintIndent(indent, "%c", header.magic[i]); in PrintHeaderInfo() 228 PrintIndent(indent, "\n"); in PrintHeaderInfo() 229 PrintIndent(indent, "header_size: %" PRId64 "\n", header.size); in PrintHeaderInfo() 233 PrintIndent(indent, "attr_size: %" PRId64 "\n", header.attrSize); in PrintHeaderInfo() 238 PrintIndent(indent, "attrs[file section]: offset %" PRId64 ", size %" PRId64 "\n", in PrintHeaderInfo() [all …]
|
| D | perf_event_record.cpp | 185 void PerfEventRecord::Dump(int indent, std::string outputFilename, FILE *outputDump) const in Dump() argument 197 PrintIndent(indent, "\n"); in Dump() 198 PrintIndent(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 PrintIndent(indent, "sample_type: 0x%" PRIx64 "\n", sampleType_); in DumpData() 421 PrintIndent(indent, "ID %" PRIu64 "\n", static_cast<uint64_t>(data_.sample_id)); in DumpData() 424 PrintIndent(indent, "ip %llx\n", data_.ip); in DumpData() 427 PrintIndent(indent, "pid %u, tid %u\n", data_.pid, data_.tid); in DumpData() 430 PrintIndent(indent, "time %llu\n", data_.time); in DumpData() [all …]
|
| D | report_protobuf_file.cpp | 297 bool ReportProtobufFileReader::Dump(const CallStackSample &message, int indent) in Dump() argument 299 PrintIndent(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() 329 bool ReportProtobufFileReader::Dump(const SampleStatistic &message, int indent) in Dump() argument 331 PrintIndent(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() 341 bool ReportProtobufFileReader::Dump(const SymbolTableFile &message, int indent) in Dump() argument 343 PrintIndent(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() 355 bool ReportProtobufFileReader::Dump(const VirtualThreadInfo &message, int indent) in Dump() argument 357 PrintIndent(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() 369 bool ReportProtobufFileReader::Dump(const ReportInfo &message, int indent) in Dump() argument 371 PrintIndent(indent, "%s:\n", message.GetTypeName().c_str()); in Dump() [all …]
|
| D | report.cpp | 401 bool Report::OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount, in OutputStdCallFrame() argument 406 HLOGV("frame %f indent %d at %s", heat, indent, funcName.data()); in OutputStdCallFrame() 414 fprintf(output_, "%*s", indent, " "); in OutputStdCallFrame() 417 fprintf(output_, "%*s", indent, "|- "); in OutputStdCallFrame() 451 void Report::OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrame, in OutputStdCallFrames() argument 464 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames() 471 OutputStdCallFrame(indent + CALLSTACK_INDENT, "[run in self function]", in OutputStdCallFrames() 479 HLOGV("childCallFream %*c %s", indent, ' ', callFrame.childs[0].func_.data()); in OutputStdCallFrames() 481 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_); in OutputStdCallFrames() 485 HLOGV("childCallFream %*c %s", indent, ' ', childCallFrame.func_.data()); in OutputStdCallFrames() [all …]
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | utilities.h | 301 #define INDENT_ONE_LEVEL (indent + 1) 302 #define INDENT_TWO_LEVEL (indent + 2) 304 #define PrintIndent(indent, format, ...) \ argument 305 if (indent >= 0) { \ 306 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 | 63 json.dump(result_dict, f, indent=4) 149 json.dump(product_dict, f, indent=4) 412 json.dump(rom_ram_baseline, f, indent=4) 428 json.dump(rom_size_dict, f, indent=4)
|
| D | get_subsystem_component.py | 81 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 | 267 json.dump(rom_baseline_dict, f, indent=4) 299 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 | 147 res = json.dumps(unknown_items, indent=4)
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/exteriorStyle/ |
| D | exteriorStyle.css | 71 text-indent: 50px;
|
| /developtools/integration_verification/tools/deps_guard/rules_checker/ |
| D | chipsetsdk.py | 120 json.dump(headers, f, indent = 4)
|
| /developtools/integration_verification/tools/components_deps/ |
| D | components_deps_analyzer.py | 166 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))
|