Lines Matching refs:info_dict
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())
111 image = info_dict.get("{}_image".format(partition))
126 if partition == "system" and "system_other_image" in info_dict:
127 other_image = info_dict["system_other_image"]
132 if info_dict.get("build_non_sparse_super_partition") != "true":
148 info_dict = common.LoadInfoDict(inp)
150 info_dict.get("dynamic_partition_list", "").strip())
155 info_dict["system_other_image"] = image_path
163 info_dict["{}_image".format(partition)] = image_path
169 return BuildSuperImageFromDict(info_dict, out)