Home | History | Annotate | Download | only in releasetools

Lines Matching refs:target_zip

783 def WriteBlockIncrementalOTAPackage(target_zip, source_zip, output_zip):
838 target_zip=target_zip,
892 if HasVendorPartition(target_zip):
1093 script.AddToZip(target_zip, output_zip, input_path=OPTIONS.updater_binary)
1320 target_zip = zipfile.ZipFile(target_file, "r")
1322 namelist = target_zip.namelist()
1324 care_map_data = target_zip.read(care_map_path)
1328 common.ZipClose(target_zip)
1337 def __init__(self, partition, source_zip, target_zip, output_zip):
1340 self.target_data = target_data = LoadPartitionFiles(target_zip, partition)
1467 def WriteIncrementalOTAPackage(target_zip, source_zip, output_zip):
1468 target_has_recovery_patch = HasRecoveryPatch(target_zip)
1474 return WriteBlockIncrementalOTAPackage(target_zip, source_zip, output_zip)
1528 target_zip=target_zip,
1535 system_diff = FileDifference("system", source_zip, target_zip, output_zip)
1537 if HasVendorPartition(target_zip):
1538 vendor_diff = FileDifference("vendor", source_zip, target_zip, output_zip)
1754 target_symlinks = CopyPartitionFiles(system_items, target_zip, None)
1756 target_symlinks.extend(CopyPartitionFiles(vendor_items, target_zip, None))
1759 system_items.GetMetadata(target_zip)
1762 vendor_items.GetMetadata(target_zip)
1883 script.AddToZip(target_zip, output_zip, input_path=OPTIONS.updater_binary)