Searched refs:image_path (Results 1 – 8 of 8) sorted by relevance
/build/make/tools/releasetools/ |
D | build_super_image.py | 153 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
|
D | validate_target_files.py | 260 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]
|
D | img_from_target_files | 131 image_path = os.path.join(images_path, image) 132 assert os.path.exists(image_path) 134 common.ZipWrite(output_zip, image_path, image)
|
D | img_from_target_files.py | 131 image_path = os.path.join(images_path, image) 132 assert os.path.exists(image_path) 134 common.ZipWrite(output_zip, image_path, image)
|
D | add_img_to_target_files | 458 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)
|
D | add_img_to_target_files.py | 458 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)
|
D | test_add_img_to_target_files.py | 57 image_path = os.path.join(path, image + '.img') 58 with open(image_path, 'wb') as image_fp:
|
D | build_image.py | 85 def GetFilesystemCharacteristics(image_path, sparse_image=True): argument 95 unsparse_image_path = image_path 97 unsparse_image_path = UnsparseImage(image_path, replace=False)
|