Home | History | Annotate | Download | only in releasetools

Lines Matching full:out_file

242 def MakeVerityEnabledImage(out_file, fec_supported, prop_dict):
246 out_file: the location to write the verifiable image at
271 if not BuildVerityTree(out_file, verity_image_path, prop_dict):
284 if not BuildVerifiedImage(out_file,
307 def BuildImage(in_dir, prop_dict, out_file, target_out=None):
308 """Build an image to out_file from in_dir with property prop_dict.
313 out_file: path of the output image file.
370 build_command.extend([in_dir, out_file, fs_type,
393 build_command.extend([in_dir, out_file])
415 build_command.extend([out_file, prop_dict["partition_size"]])
421 build_command.append(out_file)
482 image_size = GetSimgSize(out_file)
488 ZeroPadSimg(out_file, partition_size - image_size)
492 if not MakeVerityEnabledImage(out_file, verity_fec_supported, prop_dict):
496 success, unsparse_image = UnsparseImage(out_file, replace=False)
621 out_file = argv[2]
630 image_filename = os.path.basename(out_file)
650 if not BuildImage(in_dir, image_properties, out_file, target_out):
651 print >> sys.stderr, "error: failed to build %s from %s" % (out_file,