• Home
  • Raw
  • Download

Lines Matching refs:get

399     self._is_ab = info_dict.get("ab_update") == "true"
405 self._oem_props = info_dict.get("oem_fingerprint_properties")
448 vendor_prop = self.info_dict.get("vendor.build.prop")
455 vendor_prop = self.info_dict.get("vendor.build.prop")
470 def get(self, key, default=None): member in BuildInfo
471 return self.info_dict.get(key, default)
479 partition_props = self.info_dict.get(prop_file)
591 avb_enable = self.info_dict.get("avb_enable") == "true"
595 vbmeta_digest = self.info_dict.get("vbmeta_digest")
619 return self._partition_fingerprints.get(partition, None)
658 recovery_mount_options = self.info_dict.get("recovery_mount_options")
717 if info_dict.get('lz4_ramdisks') == 'true':
837 if d.get("avb_enable") == "true":
1036 return self.build_props.get(prop)
1112 if info_dict.get('ab_update') == 'true' and \
1113 info_dict.get("allow_non_ab") != "true":
1120 system_root_image = info_dict.get('system_root_image') == 'true'
1121 if info_dict.get('no_recovery') != 'true':
1134 if info_dict.get('recovery_as_boot') == 'true':
1174 if (framework_dict.get("use_dynamic_partitions") !=
1175 "true") or (vendor_dict.get("use_dynamic_partitions") != "true"):
1181 framework_dict.get("dynamic_partition_list", ""),
1182 vendor_dict.get("dynamic_partition_list", ""))
1207 framework_dict.get(key, ""), vendor_dict.get(key, ""))
1307 key_path = OPTIONS.info_dict.get("avb_" + partition + "_key_path")
1312 algorithm = OPTIONS.info_dict.get("avb_" + partition + "_algorithm")
1315 avb_salt = OPTIONS.info_dict.get("avb_salt")
1340 key_path = info_dict.get("avb_" + partition + "_key_path")
1349 if info_dict.get("ab_update") != "true" and partition == "recovery":
1428 key_path = OPTIONS.info_dict.get("gki_signing_key_path")
1443 algorithm = OPTIONS.info_dict.get("gki_signing_algorithm")
1448 signature_args = OPTIONS.info_dict.get("gki_signing_signature_args")
1476 custom_partitions = OPTIONS.info_dict.get(
1490 args = OPTIONS.info_dict.get("avb_{}_args".format(name))
1568 if info_dict.get("exclude_kernel_from_recovery_image") == "true":
1621 args = info_dict.get("recovery_mkbootimg_args")
1625 args = info_dict.get("mkbootimg_args")
1627 args = info_dict.get("mkbootimg_args")
1631 args = info_dict.get("mkbootimg_version_args")
1641 if info_dict.get("vboot"):
1648 if info_dict.get("include_recovery_dtbo") == "true":
1651 if info_dict.get("include_recovery_acpio") == "true":
1657 if (info_dict.get("boot_signer") == "true" and
1658 info_dict.get("verity_key")):
1673 elif info_dict.get("vboot"):
1695 if info_dict.get("avb_enable") == "true":
1705 args = info_dict.get("avb_" + partition_name + "_add_hash_footer_args")
1735 if info_dict.get("avb_enable") == "true":
1746 args = info_dict.get("avb_" + partition_name + "_add_hash_footer_args")
1787 has_ramdisk = (info_dict.get("system_root_image") != "true" or
1789 info_dict.get("recovery_as_boot") == "true")
1843 args = info_dict.get("mkbootimg_args")
1847 args = info_dict.get("mkbootimg_version_args")
1884 if info_dict.get("avb_enable") == "true":
1890 args = info_dict.get("avb_vendor_boot_add_hash_footer_args")
2020 is_sparse = info_dict.get("extfs_sparse_flag")
2027 allow_shared_blocks = info_dict.get("ext4_share_dup_blocks") == "true"
2123 if ranges.extra.get('uses_shared_blocks'):
2325 limit = info_dict.get(device + "_size")
2332 if info_dict.get("avb_enable") == "true" and target in AVB_PARTITIONS:
2838 return kwargs.get("default")
2959 diff_program = DIFF_PROGRAM_BY_EXT.get(ext, "bsdiff")
3074 OPTIONS.info_dict.get("blockimgdiff_versions", "1").split(","))
3090 is_dynamic_build = OPTIONS.info_dict.get(
3094 is_dynamic_build = OPTIONS.source_info_dict.get(
3097 OPTIONS.source_info_dict.get("dynamic_partition_list", "").strip())
3100 OPTIONS.info_dict.get("dynamic_partition_list", "").strip())
3474 full_recovery_image = info_dict.get("full_recovery_image") == "true"
3475 board_uses_vendorimage = info_dict.get("board_uses_vendorimage") == "true"
3492 system_root_image = info_dict.get("system_root_image") == "true"
3640 tgt_groups = shlex.split(info_dict.get(
3642 src_groups = shlex.split(source_info_dict.get(
3646 for p in shlex.split(info_dict.get(
3654 for p in shlex.split(source_info_dict.get(
3661 target_dynamic_partitions = set(shlex.split(info_dict.get(
3669 source_dynamic_partitions = set(shlex.split(source_info_dict.get(
3685 self._group_updates[g].tgt_size = int(info_dict.get(
3691 self._group_updates[g].src_size = int(source_info_dict.get(
3897 image_size = OPTIONS.info_dict.get(which + "_image_size")
3940 OPTIONS.info_dict.get(avb_hashtree_enable) == "true"):
3956 partition_props = OPTIONS.info_dict.get(partition + ".build.prop")