/developtools/profiler/hiebpf/src/ |
H A D | command_helper.cpp | 20 int CommandHelper::Start(int* argc, char*** argv, const std::string& help) in Start() argument 24 // Hence print the usage help and continue in Start() 28 if (help.compare(SUPPORTED_ARGS[ARG_NONG]) == 0) { in Start() 29 // user does not issue help in Start() 34 // not know the command usage. Hence print the usage help and continue in Start() 45 DoHelp(help); in Start() 49 void CommandHelper::DoHelp(const std::string& help) in DoHelp() argument 51 if (help.compare(SUPPORTED_ARGS[ARG_HELP]) == 0) { in DoHelp() 53 } else if (help.compare(SUPPORTED_ARGS[ARG_OUTPUT_FILE]) == 0) { in DoHelp() 55 } else if (help in DoHelp() [all...] |
/developtools/hiperf/script/ |
H A D | command_script.py | 45 help="""Collect profile info for an OHOS app""") 48 help="""Collect profile info 52 help="""Running a command on the OHOS device. 58 help="""Limit the process id of the collection 62 help="""Limit the thread id of the collection 66 help="""Collect system-wide information. 73 help="""Used with -p. Profile the launch time of 80 help="""Set recording options for `hiperf record` 84 help="""When profiling an OHOS app containing 95 help [all...] |
H A D | record_control.py | 59 help='prepare need to add profiling target to ' 63 help='start execute hiperf record') 65 help='pause execute hiperf record') 67 help='pause execute hiperf record') 69 help='stop execute hiperf record' 75 help="""Collect profile info for an OHOS app""") 78 help="""Collect profile info 82 help="""Running a command on the OHOS device. 88 help="""Limit the process id of the collection 92 help [all...] |
H A D | make_diff.py | 75 type=file_check, help=""" The path of base profiling 78 type=file_check, help=""" The path of target profiling 81 help="""the path of the report.""") 83 help="""Path to find symbol dir use to 86 help="""Path to find symbol dir use to
|
H A D | make_report_sample.py | 41 type=file_check, help=""" The path of profiling 44 help="""Path to find symbol dir use to 47 help="""print the call_stack""")
|
H A D | make_report.py | 53 type=file_check, help=""" The path of profiling 56 help="""the path of the report.""") 58 help="""Path to find symbol dir use to 61 type=dir_check, help=""" The path of report html template
|
/developtools/ace_ets2bundle/ |
H A D | build_ets_loader_library.py | 39 parser.add_argument('--node', help='path to nodejs exetuable') 40 parser.add_argument('--babel-js', help='path to babel.js') 41 parser.add_argument('--ets-loader-src-dir', help='path to compiler/src') 42 parser.add_argument('--babel-config-js', help='path babel.config.js') 43 parser.add_argument('--uglify-source-js', help='path uglify-source.js') 44 parser.add_argument('--output-dir', help='path to output') 46 help='path declarations file') 48 help='path build_declarations_file.js') 50 help='path declarations file to output') 52 help [all...] |
H A D | generateSysResource.py | 73 parser.add_argument('--input-json', help='input path to id_defined.json') 74 parser.add_argument('--output-js', help='output path to sysResource.js')
|
/developtools/integration_verification/tools/startup_guard/ |
H A D | startup_guard.py | 26 help='input config files base directory example "out/rk3568" ', required=True)
28 help='target_cpu cpu type" ', required=True)
30 help='rules directory', required=False)
32 help='force to pass all rules', required=False)
|
/developtools/ace_js2bundle/ |
H A D | build_ace_loader_library.py | 39 parser.add_argument('--node', help='path to nodejs exetuable') 40 parser.add_argument('--babel-js', help='path to babel.js') 41 parser.add_argument('--ace-loader-src-dir', help='path to ace-loader/src') 42 parser.add_argument('--babel-config-js', help='path babel.config.js') 43 parser.add_argument('--module-source-js', help='path module-source.js') 44 parser.add_argument('--uglify-source-js', help='path uglify-source.js') 45 parser.add_argument('--output-dir', help='path to output')
|
/developtools/integration_verification/tools/deps_guard/ |
H A D | deps_guard.py | 28 help='input asset files root directory', required=True)
31 help='rules directory', required=False)
34 help='force to pass all rules', required=False)
|
/developtools/hdc/scripts/ |
H A D | hdc_medium_test.py | 145 help='test times')
147 help='filename')
149 help='Add description on report')
|
H A D | hdc_hash_gen.py | 103 help='output file name') 105 help='input directory') 107 help='output directory')
|
/developtools/syscap_codec/tools/ |
H A D | syscap_config_merge.py | 139 help='base syscap config header.') 141 help='extern syscap config header.') 143 help='output app file')
|
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
H A D | config.py | 43 help="product name. eg: -p ipcamera_hispark_taurus") 45 default=".", help="root path of openharmony") 47 action="store_false", help="recollect gn info or not(-g)") 49 help="recollect subsystem_component info or not(-s)") 51 help="add baseline of component to the result(-b) or not.") 53 action="store_true", help="unit adaptive") 55 help="basename of output file, default: rom_analysis_result. eg: rom_analysis_result")
|
/developtools/profiler/hiebpf/include/ |
H A D | commandline_flags.h | 753 #define HIEBPF_DEFINE_bool(name, default_val, help) \ 757 static std::string FLAGS_HELP_##name {help}; \ 763 #define HIEBPF_DEFINE_int8(name, default_val, help) \ 767 static std::string FLAGS_##name##_help {help}; \ 773 #define HIEBPF_DEFINE_int16(name, default_val, help) \ 777 static std::string FLAGS_##name##_help {help}; \ 783 #define HIEBPF_DEFINE_int32(name, default_val, help) \ 787 static std::string FLAGS_##name##_help {help}; \ 793 #define HIEBPF_DEFINE_int64(name, default_val, help) \ 797 static std::string FLAGS_##name##_help {help}; \ [all...] |
H A D | command_helper.h | 31 int Start(int* argc, char*** argv, const std::string& help); 34 void DoHelp(const std::string& help); 60 "help", 82 " run 'hiebpf --help help' for help if you don't\n"}; 86 " --help <arg>:\n" 87 " show help message of the specified argument, '--help help' show [all...] |
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/ |
H A D | config_parser_mgr.py | 31 help='input config files base directory example "out/rk3568/packages/phone/" ', required=True) 33 help='target_cpu cpu type" ', required=True)
|
/developtools/integration_verification/tools/opensource_tools/src/ |
H A D | validate_readme_opensource.py | 191 parser.add_argument("project_root", help="The root directory of the project.") 193 "--validate-format", action='store_true', help="Validate the format of README.OpenSource files." 196 "--validate-content", action='store_true', help="Validate the content of README.OpenSource files against reference data." 199 "--reference-data", help="Path to the reference data JSON file (required for content validation)." 201 parser.add_argument("--log-file", help="Path to the log file for validation results.")
|
/developtools/integration_verification/tools/components_deps/ |
H A D | components_deps_analyzer.py | 173 help="path of pr BUILD.gn")
175 help="eg: 1_2_3,4_5")
177 help="gn file corresponding name")
179 help="path of config_file")
181 help="open component name set")
183 help="name of output_json")
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
H A D | rom_analyzer.py | 310 help="root path of openharmony. eg: -p ~/openharmony") 312 help="path of out/{product_name}/packages/phone/system_module_info.json") 314 type=str, help="product name. eg: -n rk3568") 316 help="subdirectories of out/{product_name}/packages/phone to be counted." 319 help="add baseline of component to the result(-b) or not.") 321 help="basename of output file, default: rom_analysis_result. eg: demo/rom_analysis_result") 323 action="store_true", help="unit adaptive") 325 help="if output result as excel, default: False. eg: -e True")
|
/developtools/hiperf/include/ |
H A D | subcommand.h | 26 SubCommand(const std::string &name, const std::string &brief, const std::string &help) in SubCommand() argument 27 : name_(name), brief_(brief), help_(help) in SubCommand() 49 // some help cmd
|
/developtools/profiler/device/plugins/ftrace_plugin/tools/ |
H A D | ftrace_proto_generator.py | 195 help="event allow list file path", 198 "-e", dest="events_dir", required=True, type=str, help="event formats directory" 205 help="code file output directory",
|
/developtools/hiperf/src/ |
H A D | option.cpp | 154 bool RegisterMainOption(const std::string &optionName, const std::string &help, in RegisterMainOption() argument 164 g_MainOptions[optionName].get()->help = help; in RegisterMainOption()
|
/developtools/hiperf/test/unittest/common/native/ |
H A D | option_test.cpp | 86 EXPECT_NE(Option::FindMainOption(TEST_OPTION_CMD_1)->help, TEST_OPTION_BRIEF); in HWTEST_F() 87 EXPECT_EQ(Option::FindMainOption(TEST_OPTION_CMD_1)->help, TEST_OPTION_HELP); in HWTEST_F() 90 EXPECT_NE(Option::FindMainOption(TEST_OPTION_CMD_2)->help, TEST_OPTION_BRIEF); in HWTEST_F() 91 EXPECT_EQ(Option::FindMainOption(TEST_OPTION_CMD_2)->help, TEST_OPTION_HELP); in HWTEST_F() 94 EXPECT_NE(Option::FindMainOption(TEST_OPTION_CMD_3)->help, TEST_OPTION_BRIEF); in HWTEST_F() 95 EXPECT_EQ(Option::FindMainOption(TEST_OPTION_CMD_3)->help, TEST_OPTION_HELP); in HWTEST_F()
|