Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 9 of 9) 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/
Dpart_deps.py59 def _drawing_part_deps(part_deps_data, output_path): argument
101 _output_graph_file = os.path.join(output_path, 'part-deps-grahp.html')
117 def run(deps_files_path, output_path, is_graph): argument
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))
Dmodule_deps.py53 def run(deps_files_path, output_path): argument
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))
/build/ohos/hisysevent/
Dgen_def_from_all_yaml.py140 def merge_hisysevent_config(yaml_list, output_path): argument
141 if (len(output_path) == 0):
143 output_path = present_path
147 if not os.path.exists(output_path):
148 os.makedirs(output_path, exist_ok=True)
159 hisysevent_warning_file = os.path.join(output_path,
175 hisysevent_def_file = os.path.join(output_path, 'hisysevent.def')
Dhisysevent_process.py60 def _get_install_info(hisysevent_config_files, output_path, argument
65 hisysevent_config_files, output_path)
/build/ohos/images/mkimage/
Dmkcpioimage.py66 output_path = os.path.join("%s/../images" % os.getcwd(), args.device)
68 output_path = os.path.join("%s/../images" % os.getcwd(), "updater.img")
70 output_path = os.path.join(work_dir, args.device)
71 ramdisk_cmd = ['cpio', '-o', '-H', 'newc', '-O', output_path]
77 if conf_size < os.path.getsize(output_path):
80 (conf_size, os.path.getsize(output_path)))
/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): argument
48 graph.render(filename=output_path+'/dep_graph')
/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))