Searched refs:target_file (Results 1 – 3 of 3) sorted by relevance
/build/make/tools/releasetools/ |
D | ota_from_target_files | 383 def Generate(self, target_file, source_file=None, additional_args=None): argument 399 "--target_image", target_file] 1683 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 1684 target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True) 1731 return target_file 1753 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 1754 shutil.copyfile(input_file, target_file) 1755 common.ZipDelete(target_file, POSTINSTALL_CONFIG) 1756 return target_file 1781 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") [all …]
|
D | ota_from_target_files.py | 383 def Generate(self, target_file, source_file=None, additional_args=None): argument 399 "--target_image", target_file] 1683 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 1684 target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True) 1731 return target_file 1753 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 1754 shutil.copyfile(input_file, target_file) 1755 common.ZipDelete(target_file, POSTINSTALL_CONFIG) 1756 return target_file 1781 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") [all …]
|
D | test_ota_from_target_files.py | 343 target_file = GetTargetFilesZipForSecondaryImages(input_file) 345 with zipfile.ZipFile(target_file) as verify_zip: 365 target_file = GetTargetFilesZipForSecondaryImages( 368 with zipfile.ZipFile(target_file) as verify_zip: 386 target_file = GetTargetFilesZipForSecondaryImages(input_file) 388 with zipfile.ZipFile(target_file) as verify_zip: 423 target_file = GetTargetFilesZipForSecondaryImages(input_file) 425 with zipfile.ZipFile(target_file) as verify_zip: 453 target_file = GetTargetFilesZipWithoutPostinstallConfig(input_file) 454 with zipfile.ZipFile(target_file) as verify_zip: [all …]
|