Searched refs:extra_args (Results 1 – 4 of 4) sorted by relevance
/build/make/tools/releasetools/ |
D | test_common.py | 483 def _test_ZipWriteStr(self, zinfo_or_arcname, contents, extra_args=None): argument 484 extra_args = dict(extra_args or {}) 493 expected_compress_type = extra_args.get("compress_type", 497 expected_mode = extra_args.get("perms", 0o644) 504 expected_mode = extra_args.get("perms", zinfo_perms) 506 common.ZipWriteStr(zip_file, zinfo_or_arcname, contents, **extra_args) 515 def _test_ZipWriteStr_large_file(self, large_file: BinaryIO, small, extra_args=None): argument 516 extra_args = dict(extra_args or {}) 541 expected_compress_type = extra_args.get("compress_type", 544 common.ZipWrite(zip_file, test_file_name, **extra_args) [all …]
|
D | sign_target_files_apks.py | 1165 extra_args = OPTIONS.avb_extra_args.get(partition) 1166 if extra_args: 1168 partition, extra_args)) 1173 misc_info[args_key] = (misc_info.get(args_key, '') + ' ' + extra_args) 1561 partition, extra_args = a.split("=", 1) 1562 OPTIONS.avb_extra_args[partition] = extra_args
|
D | add_img_to_target_files.py | 545 extra_args = OPTIONS.info_dict.get( 552 key_path, algorithm, extra_args)
|
/build/make/tools/releasetools/merge/ |
D | merge_target_files.py | 417 def files_from_path(target_path, extra_args=None): argument 419 find_command = ['find', target_path] + (extra_args or [])
|