HomeSort by relevance Sort by last modified time
    Searched refs:info_dict (Results 1 - 16 of 16) sorted by null

  /build/make/tools/releasetools/
build_super_image.py 72 def BuildSuperImageFromDict(info_dict, output):
74 cmd = [info_dict["lpmake"],
76 "--super-name", info_dict["super_metadata_device"]]
78 ab_update = info_dict.get("ab_update") == "true"
79 retrofit = info_dict.get("dynamic_partition_retrofit") == "true"
80 block_devices = shlex.split(info_dict.get("super_block_devices", "").strip())
81 groups = shlex.split(info_dict.get("super_partition_groups", "").strip())
94 size = info_dict["super_{}_device_size".format(device)]
100 group_size = info_dict["super_{}_group_size".format(group)]
108 info_dict["super_{}_partition_list".format(group)].strip()
    [all...]
validate_target_files.py 68 def ValidateFileConsistency(input_zip, input_tmp, info_dict):
119 if info_dict.get('extfs_sparse_flag') != '-s':
133 def ValidateInstallRecoveryScript(input_tmp, info_dict):
174 full_recovery_image = info_dict.get("full_recovery_image") == "true"
229 def ValidateVerifiedBootImages(input_tmp, info_dict, options):
239 info_dict: The loaded info dict.
250 if info_dict.get('boot_signer') == 'true':
254 # given X.509 encoded pubkey (or falling back to the one in the info_dict if
258 verity_key = info_dict['verity_key'] + '.x509.pem'
275 if info_dict.get('verity') == 'true'
    [all...]
add_img_to_target_files 124 image_size = OPTIONS.info_dict.get(size_key)
161 boot_img, info_dict=OPTIONS.info_dict)
164 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "system", img,
179 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "system_other", img)
192 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "vendor", img,
209 OPTIONS.input_tmp, OPTIONS.info_dict, "product", img,
227 OPTIONS.input_tmp, OPTIONS.info_dict, "product_services", img,
243 OPTIONS.input_tmp, OPTIONS.info_dict, "odm", img,
265 if OPTIONS.info_dict.get("avb_enable") == "true"
    [all...]
add_img_to_target_files.py 124 image_size = OPTIONS.info_dict.get(size_key)
161 boot_img, info_dict=OPTIONS.info_dict)
164 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "system", img,
179 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "system_other", img)
192 CreateImage(OPTIONS.input_tmp, OPTIONS.info_dict, "vendor", img,
209 OPTIONS.input_tmp, OPTIONS.info_dict, "product", img,
227 OPTIONS.input_tmp, OPTIONS.info_dict, "product_services", img,
243 OPTIONS.input_tmp, OPTIONS.info_dict, "odm", img,
265 if OPTIONS.info_dict.get("avb_enable") == "true"
    [all...]
test_validate_target_files.py 64 info_dict = {
70 ValidateVerifiedBootImages(input_tmp, info_dict, options)
78 info_dict = {
85 AssertionError, ValidateVerifiedBootImages, input_tmp, info_dict,
102 info_dict = {
109 AssertionError, ValidateVerifiedBootImages, input_tmp, info_dict,
156 info_dict = {
163 ValidateVerifiedBootImages(input_tmp, info_dict, options)
212 info_dict = {'extfs_sparse_flag': '-s'}
216 ValidateFileConsistency(input_zip, input_tmp, info_dict)
    [all...]
common.py 79 self.info_dict = None
385 # cases, since it may load the info_dict from an old build (e.g. when
537 key_path = OPTIONS.info_dict.get("avb_" + partition + "_key_path")
538 algorithm = OPTIONS.info_dict.get("avb_" + partition + "_algorithm")
541 avb_salt = OPTIONS.info_dict.get("avb_salt")
547 def GetAvbChainedPartitionArg(partition, info_dict, key=None):
552 info_dict: The info dict to look up the key info and rollback index
555 the key listed in info_dict.
562 key = info_dict["avb_" + partition + "_key_path"]
564 rollback_index_location = info_dict[
    [all...]
ota_from_target_files 266 info_dict: The build-time info dict.
282 def __init__(self, info_dict, oem_dicts):
288 info_dict: The build-time info dict.
294 self.info_dict = info_dict
297 self._is_ab = info_dict.get("ab_update") == "true"
298 self._oem_props = info_dict.get("oem_fingerprint_properties")
332 if partition + ".build.prop" not in self.info_dict:
334 build_prop = self.info_dict[partition + ".build.prop"]
346 return self.info_dict[key
1767 info_dict=OPTIONS.target_info_dict, variable
    [all...]
ota_from_target_files.py 266 info_dict: The build-time info dict.
282 def __init__(self, info_dict, oem_dicts):
288 info_dict: The build-time info dict.
294 self.info_dict = info_dict
297 self._is_ab = info_dict.get("ab_update") == "true"
298 self._oem_props = info_dict.get("oem_fingerprint_properties")
332 if partition + ".build.prop" not in self.info_dict:
334 build_prop = self.info_dict[partition + ".build.prop"]
346 return self.info_dict[key
1767 info_dict=OPTIONS.target_info_dict, variable
    [all...]
test_add_img_to_target_files.py 137 OPTIONS.info_dict = {
202 OPTIONS.info_dict = {
229 OPTIONS.info_dict = {
246 OPTIONS.info_dict = {
272 OPTIONS.info_dict = {}
335 OPTIONS.info_dict = {}
344 OPTIONS.info_dict = {
364 OPTIONS.info_dict = {
379 OPTIONS.info_dict = {
make_recovery_patch 40 OPTIONS.info_dict = common.LoadInfoDict(input_dir)
make_recovery_patch.py 40 OPTIONS.info_dict = common.LoadInfoDict(input_dir)
test_common.py     [all...]
verity_utils.py 519 def CreateHashtreeInfoGenerator(partition_name, block_size, info_dict):
521 if (info_dict.get("verity") == "true" and
522 info_dict.get("{}_verity_block_device".format(partition_name))):
523 partition_size = info_dict["{}_size".format(partition_name)]
524 fec_supported = info_dict.get("verity_fec") == "true"
img_from_target_files 57 info = OPTIONS.info_dict = common.LoadInfoDict(input_file)
img_from_target_files.py 57 info = OPTIONS.info_dict = common.LoadInfoDict(input_file)
  /external/tensorflow/tensorflow/contrib/integrate/python/ops/
odes.py 266 """Saved integration history for use in `info_dict`.
413 info_dict = {
418 return (y, info_dict)
490 `(y, info_dict)` describing the integration process.
498 info_dict: only if `full_output == True`. A dict with the following values:

Completed in 282 milliseconds