Lines Matching refs:info_dict
72 def BuildSuperImageFromDict(info_dict, output): argument
74 cmd = [info_dict["lpmake"],
76 "--super-name", info_dict["super_metadata_device"]]
78 ab_update = info_dict.get("ab_update") == "true"
79 virtual_ab = info_dict.get("virtual_ab") == "true"
80 virtual_ab_retrofit = info_dict.get("virtual_ab_retrofit") == "true"
81 retrofit = info_dict.get("dynamic_partition_retrofit") == "true"
82 block_devices = shlex.split(info_dict.get("super_block_devices", "").strip())
83 groups = shlex.split(info_dict.get("super_partition_groups", "").strip())
98 size = info_dict["super_{}_device_size".format(device)]
104 group_size = info_dict["super_{}_group_size".format(group)]
112 info_dict["super_{}_partition_list".format(group)].strip())
115 image = info_dict.get("{}_image".format(partition))
130 if partition == "system" and "system_other_image" in info_dict:
131 other_image = info_dict["system_other_image"]
136 if info_dict.get("build_non_sparse_super_partition") != "true":
152 info_dict = common.LoadInfoDict(inp)
154 info_dict.get("dynamic_partition_list", "").strip())
159 info_dict["system_other_image"] = image_path
167 info_dict["{}_image".format(partition)] = image_path
173 return BuildSuperImageFromDict(info_dict, out)