Searched refs:target_file (Results 1 – 3 of 3) sorted by relevance
/build/make/tools/releasetools/ |
D | ota_from_target_files.py | 398 def Generate(self, target_file, source_file=None, additional_args=None): argument 414 "--target_image", target_file] 698 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 699 target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True) 746 return target_file 768 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") 769 shutil.copyfile(input_file, target_file) 770 common.ZipDelete(target_file, POSTINSTALL_CONFIG) 771 return target_file 872 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") [all …]
|
D | test_ota_from_target_files.py | 372 target_file = GetTargetFilesZipForSecondaryImages(input_file) 374 with zipfile.ZipFile(target_file) as verify_zip: 394 target_file = GetTargetFilesZipForSecondaryImages( 397 with zipfile.ZipFile(target_file) as verify_zip: 415 target_file = GetTargetFilesZipForSecondaryImages(input_file) 417 with zipfile.ZipFile(target_file) as verify_zip: 452 target_file = GetTargetFilesZipForSecondaryImages(input_file) 454 with zipfile.ZipFile(target_file) as verify_zip: 485 target_file = GetTargetFilesZipForPartialUpdates(input_file, ['system']) 486 with zipfile.ZipFile(target_file) as verify_zip: [all …]
|
D | non_ab_ota.py | 546 def GenerateNonAbOtaPackage(target_file, output_file, source_file=None): argument 567 OPTIONS.input_tmp = common.UnzipTemp(target_file, UNZIP_PATTERN) 588 with zipfile.ZipFile(target_file) as input_zip: 598 with zipfile.ZipFile(target_file) as input_zip, \
|