Searched refs:ZipFile (Results 1 - 11 of 11) sorted by relevance
/build/ohos/ndk/ |
H A D | archive_ndk.py | 51 with zipfile.ZipFile(output, 'a') as outfile: 67 with zipfile.ZipFile(output, 'w') as outfile: 72 with zipfile.ZipFile(output, 'a') as zip_file:
|
/build/scripts/ |
H A D | compile_resources.py | 22 from zipfile import ZipFile # noqa: E402 namespace 94 with ZipFile(options.output_resources_zipfile, 'w') as file:
|
H A D | merge_profile.py | 23 from zipfile import ZipFile # noqa: E402 namespace
|
H A D | build_js_assets.py | 21 from zipfile import ZipFile # noqa: E402 namespace 205 with ZipFile(options.output, 'w') as file:
|
/build/ohos/sdk/ |
H A D | add_notice_file.py | 45 with zipfile.ZipFile(archive, 'a') as zip_file, open(
|
H A D | copy_sdk_modules.py | 77 with zipfile.ZipFile(options.notice_output_archive, 'w') as outfile:
|
H A D | check_sdk_completeness.py | 77 zip_file = zipfile.ZipFile(archive_file, 'r')
|
/build/scripts/util/ |
H A D | build_utils.py | 318 with zipfile.ZipFile(zip_path) as z: 352 """Adds a file to the given ZipFile with a hard-coded modified time. 355 zip_file: ZipFile instance to add the file to. 359 compress: Whether to enable compression. Default is taken from ZipFile 392 # default passed to the ZipFile constructor. 424 with zipfile.ZipFile(output, 'w') as outfile: 472 output: Path or ZipFile instance to add files to. 495 assert isinstance(output, zipfile.ZipFile) 498 out_zip = zipfile.ZipFile(output, 'w') 502 with zipfile.ZipFile(in_fil [all...] |
H A D | md5_check.py | 439 with zipfile.ZipFile(path) as zip_file:
|
/build/ohos/sa_profile/ |
H A D | sa_profile_binary.py | 95 with zipfile.ZipFile(args.sa_output_zipfile, 'w') as outfile:
|
/build/ohos/hisysevent/ |
H A D | gen_def_from_all_yaml.py | 759 def_zip_file = zipfile.ZipFile(hisysevent_def_zip_file, "w", zipfile.ZIP_DEFLATED)
|
Completed in 5 milliseconds