Home
last modified time | relevance | path

Searched refs:image_path (Results 1 – 8 of 8) sorted by relevance

/build/make/tools/releasetools/
Dbuild_super_image.py153 image_path = os.path.join(inp, "IMAGES", "system_other.img")
154 if os.path.isfile(image_path):
155 info_dict["system_other_image"] = image_path
159 image_path = os.path.join(inp, "IMAGES", "{}.img".format(partition))
160 if not os.path.isfile(image_path):
161 missing_images.append(image_path)
163 info_dict["{}_image".format(partition)] = image_path
Dvalidate_target_files.py260 image_path = os.path.join(input_tmp, 'IMAGES', image)
261 if not os.path.exists(image_path):
264 cmd = ['boot_signer', '-verify', image_path, '-certificate', verity_key]
298 image_path = os.path.join(input_tmp, 'IMAGES', image)
304 if not os.path.exists(image_path):
307 cmd = ['verity_verifier', image_path, '-mincrypt', verity_key_mincrypt]
Dimg_from_target_files131 image_path = os.path.join(images_path, image)
132 assert os.path.exists(image_path)
134 common.ZipWrite(output_zip, image_path, image)
Dimg_from_target_files.py131 image_path = os.path.join(images_path, image)
132 assert os.path.exists(image_path)
134 common.ZipWrite(output_zip, image_path, image)
Dadd_img_to_target_files458 image_path = split_args[index + 1]
459 if os.path.exists(image_path):
464 OPTIONS.input_tmp, dir_name, os.path.basename(image_path))
469 assert found, 'Failed to find {}'.format(image_path)
584 image_path = image_paths[partition]
585 assert os.path.exists(image_path)
586 care_map_list += GetCareMap(partition, image_path)
Dadd_img_to_target_files.py458 image_path = split_args[index + 1]
459 if os.path.exists(image_path):
464 OPTIONS.input_tmp, dir_name, os.path.basename(image_path))
469 assert found, 'Failed to find {}'.format(image_path)
584 image_path = image_paths[partition]
585 assert os.path.exists(image_path)
586 care_map_list += GetCareMap(partition, image_path)
Dtest_add_img_to_target_files.py57 image_path = os.path.join(path, image + '.img')
58 with open(image_path, 'wb') as image_fp:
Dbuild_image.py85 def GetFilesystemCharacteristics(image_path, sparse_image=True): argument
95 unsparse_image_path = image_path
97 unsparse_image_path = UnsparseImage(image_path, replace=False)