Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 20 of 20) sorted by relevance

/build/ohos/packages/
Dbackup_restore_artifact.py36 output_path = None
38 output_path = os.path.join(
41 output_path = args.output_dir.replace(
49 output_path = asan_symbols_path
50 if output_path is not None:
51 print("Move:{},To:{}".format(source, output_path))
52 shutil.move(source, output_path)
/build/tools/module_dependence/
Dmodule_deps.py53 def run(deps_files_path: str, output_path: str):
55 all_deps_data_file = os.path.join(output_path, 'all_deps_data.json')
59 module_deps_data_file = os.path.join(output_path, 'module_deps_info.json')
70 output_path = os.path.join(os.path.dirname(args.deps_files_path),
73 run(args.deps_files_path, output_path)
74 print('module deps data output to {}'.format(output_path))
Dpart_deps.py59 def _drawing_part_deps(part_deps_data: dict, output_path: str):
101 _output_graph_file = os.path.join(output_path, 'part-deps-grahp.html')
117 def run(deps_files_path: str, output_path: str, is_graph: bool):
119 all_deps_data_file = os.path.join(output_path, 'all_deps_data.json')
123 part_deps_data_file = os.path.join(output_path, 'part_deps_info.json')
126 _drawing_part_deps(part_deps_data, output_path)
138 output_path = os.path.join(os.path.dirname(
141 run(args.deps_files_path, output_path, args.graph)
142 print('part deps data output to {}'.format(output_path))
/build/ohos/images/mkimage/
Dmkcpioimage.py67 output_path = os.path.join("%s/../images" % os.getcwd(), args.device)
71 output_path = os.path.join("%s/../images" % os.getcwd(), "updater.img")
73 output_path = os.path.join(work_dir, args.device)
74 ramdisk_cmd = ['cpio', '-o', '-H', 'newc', '-O', output_path]
80 if conf_size < os.path.getsize(output_path):
83 (conf_size, os.path.getsize(output_path)))
/build/tools/component_tools/static_check/bundle_check/
Dget_subsystem_with_component.py84 output_path: str,
90 os.path.normpath(output_path)) + '/' + output_name
110 output_path = r'.'
112 output_path = args.outpath
114 return ohos_path, output_path
Dreadme.md23 `python get_subsystem_with_component.py project_path [-o output_path]`
26 `-o output_path` 指定 `output_path` 为输出 json 文件所在目录,省略时默认为脚本所在目录。
Dbundle_json_check.py97 output_path:str = '.',
105 out_path = os.path.normpath(output_path) + '/' + output_name
137 def to_excel(output_path:str = '.',
143 outpath = os.path.normpath(output_path) + '/' + output_name
/build/ohos/hisysevent/
Dgen_def_from_all_yaml.py278 def _open_warning_file(output_path: str):
280 _warning_file_path = os.path.join(output_path, 'hisysevent_warning.txt')
299 def _output_deprecated(output_path: str):
300 deprecated_file = open(os.path.join(output_path, 'hisysevent_deprecated.txt'), 'w+')
711 def merge_hisysevent_config(yaml_list: str, output_path: str) -> str:
712 if (len(output_path) == 0):
714 output_path = present_path
718 if not os.path.exists(output_path):
719 os.makedirs(output_path, exist_ok=True)
720 _open_warning_file(output_path)
[all …]
Dhisysevent_process.py60 def _get_install_info(hisysevent_config_files: str, output_path: str,
65 hisysevent_config_files, output_path)
/build/ohos/update/
Dcheck_abi_and_copy_deps.py184 output_path = parent_output
187 output_path = os.path.join(parent_output, "etc")
189 output_path = os.path.join(parent_output, "bin")
191output_path = os.path.join(parent_output, get_value_from_file("module_info", element, "type"))
192 return output_path
/build/tools/component_tools/static_check/
Dcsct.py165 output_path = os.path.join(out_path, "output_errors.xlsx")
166 with pd.ExcelWriter(output_path) as writer:
170 print("\nStatic check finish.\nPlease check: " + output_path)
/build/templates/rust/
Drun_build_script.py67 output_path = os.path.join(args.out_dir, generated_file)
68 out_dir = os.path.dirname(output_path)
74 with build_utils.atomic_output(output_path) as output:
/build/ohos/sdk/
Dconvert_permissions.py50 output_path = os.path.abspath(os.path.join(source_root, permission_gen_path))
51 process = subprocess.Popen([nodejs, tool, config, output_path], shell=False,
/build/tools/component_tools/
Dcomponents_dependence_analysis.py33 def draw_deps_pictrue_by_gn(output_path: str):
48 graph.render(filename=output_path + '/dep_graph')
/build/templates/common/
Dinclude_relative_path_check.py109 def analysis(cls, config: str, project_path: str, components_info: str, output_path: str):
126 with os.fdopen(os.open(output_path, flags, modes), 'w') as f:
149 local_output_path = args.output_path
/build/test/example/
Dperformance_test.py64 def __init__(self, performance_cmd, output_path, report_title, ptyflag=False): argument
66 self.output_path = script_path + output_path
192 if not os.path.exists(os.path.dirname(self.output_path)):
193 os.makedirs(os.path.dirname(self.output_path), exist_ok=True)
194 with open(self.output_path, "w", encoding="utf-8") as html_file:
/build/templates/cxx/
Dprebuilt.gni53 output_path = rebase_path(_copy_output, root_build_dir)
170 output_path = rebase_path(_copy_output, root_build_dir)
276 output_path = rebase_path(_copy_output, root_build_dir)
/build/scripts/util/
Dbuild_utils.py318 output_path = os.path.join(path, name)
319 if os.path.exists(output_path):
321 (zip_path, name, output_path))
/build/ohos/sa_profile/
Dsa_profile.gni80 output_path = sources_output
/build/docs/
D编译构建调试文档.md110 …表的影响 | gn analyze <out_dir> <input_path> <output_path> |