Lines Matching refs:entries
91 def CopyZipEntries(input_file, output_file, entries): argument
103 logger.info('Writing %d entries to archive...', len(entries))
105 cmd.extend(entries)
128 entries = [
132 entries.append('META/fastboot-info.txt:fastboot-info.txt')
140 entries.append('PREBUILT_IMAGES/kernel_16k:kernel_16k')
142 entries.append('PREBUILT_IMAGES/ramdisk_16k.img:ramdisk_16k.img')
161 entries.append('{}:{}'.format(image_path, image))
166 entries.append('{}:{}'.format(entry, image))
167 return entries
180 entries = []
184 entries.append('{}:{}'.format(image, os.path.basename(image)))
185 return entries
234 entries = EntriesForUserImages(input_file)
241 entries += EntriesForSplitSuperImages(input_file)
246 entries += OPTIONS.additional_entries
248 CopyZipEntries(input_file, output_file, entries)