| /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); 115 void PrintHeaderInfo(const int &indent); 116 void PrintSymbolFile(const int &indent, const SymbolFileStruct &symbolFileStruct); 117 void PrintFeatureEventdesc(int indent, const PerfFileSectionEventDesc §ionEventdesc);
|
| D | perf_event_record.h | 152 void Dump(int indent = 0, std::string outputFilename = "") const; 153 virtual void DumpData(int indent) const = 0; 178 void DumpData(int indent) const override; 194 void DumpData(int indent) const override; 205 void DumpData(int indent) const override; 226 void DumpData(int indent) const override; 244 void DumpData(int indent = 0) const override; 271 void DumpData(int indent) const override; 281 void DumpData(int indent) const override; 291 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 | 310 #define INDENT_ONE_LEVEL (indent + 1) 311 #define INDENT_TWO_LEVEL (indent + 2) 313 #define PrintIndent(indent, format, ...) \ argument 314 if (indent >= 0) { \ 316 printf("%*s" format, (indent)*2, "", ##__VA_ARGS__); \ 318 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); 554 void OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrames, 556 bool OutputStdCallFrame(int indent, const std::string_view &funcName, uint64_t eventCount,
|
| /developtools/hiperf/src/ |
| D | subcommand_dump.cpp | 36 #define LEVEL1 (indent + 1) 37 #define LEVEL2 (indent + 2) 38 #define LEVEL3 (indent + 3) 216 void SubCommandDump::PrintHeaderInfo(const int &indent) in PrintHeaderInfo() argument 220 PrintIndent(indent, "magic: "); in PrintHeaderInfo() 222 PrintIndent(indent, "%c", header.magic[i]); in PrintHeaderInfo() 224 PrintIndent(indent, "\n"); in PrintHeaderInfo() 225 PrintIndent(indent, "header_size: %" PRId64 "\n", header.size); in PrintHeaderInfo() 229 PrintIndent(indent, "attr_size: %" PRId64 "\n", header.attrSize); in PrintHeaderInfo() 234 PrintIndent(indent, "attrs[file section]: offset %" PRId64 ", size %" PRId64 "\n", in PrintHeaderInfo() [all …]
|
| D | perf_event_record.cpp | 141 void PerfEventRecord::Dump(int indent, std::string outputFilename) const in Dump() argument 151 PrintIndent(indent, "\n"); in Dump() 152 PrintIndent(indent, "record %s: type %u, misc %u, size %zu\n", GetName().c_str(), GetType(), in Dump() 154 DumpData(indent + 1); in Dump() 337 void PerfRecordSample::DumpData(int indent) const in DumpData() 339 PrintIndent(indent, "sample_type: 0x%" PRIx64 "\n", sampleType_); in DumpData() 343 PrintIndent(indent, "ID %" PRIu64 "\n", static_cast<uint64_t>(data_.sample_id)); in DumpData() 346 PrintIndent(indent, "ip %llx\n", data_.ip); in DumpData() 349 PrintIndent(indent, "pid %u, tid %u\n", data_.pid, data_.tid); in DumpData() 352 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 | 286 #define INDENT_ONE_LEVEL (indent + 1) 287 #define INDENT_TWO_LEVEL (indent + 2) 289 #define PrintIndent(indent, format, ...) \ argument 290 if (indent >= 0) { \ 291 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/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) 411 json.dump(rom_ram_baseline, f, indent=4) 427 json.dump(rom_size_dict, f, indent=4)
|
| D | get_subsystem_component.py | 81 subsystem_item, indent=4, separators=(', ', ': '))
|
| /developtools/integration_verification/tools/deps_guard/rules_checker/ |
| D | chipsetsdk.py | 60 json.dump(headers, f, indent = 4)
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/inlineStyle/ |
| D | inlineStyle.hml | 39 <div style="text-indent: 50px;">style_test13</div>
|
| /developtools/integration_verification/tools/deps_guard/elf_file_mgr/module_info/ |
| D | compile_info_loader.py | 146 res = json.dumps(unknown_items, indent=4)
|
| /developtools/ace_ets2bundle/compiler/ |
| D | .eslintrc | 44 "indent": [2, 2, { "SwitchCase": 1 }],
|
| /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 | 253 json.dump(rom_baseline_dict, f, indent=4) 284 f.write(json.dumps(result_dict, indent=4))
|
| D | ram_analyzer.py | 521 json.dump(result_dict, f, indent=4) 528 json.dump(refactored_result, f, indent=4)
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/exteriorStyle/ |
| D | exteriorStyle.css | 71 text-indent: 50px;
|
| /developtools/hapsigner/tools/ |
| D | auto_test.py | 360 tr.write(json.dumps(test_result_dict, indent=4))
|
| /developtools/integration_verification/tools/startup_guard/config_parser_mgr/cfg/ |
| D | config_parser.py | 411 pp = pprint.PrettyPrinter(indent = 0, compact=True)
|