Lines Matching refs:d
89 for d in range(3, 1025):
91 stat = os.fstat(d)
95 os.close(d)
115 d = {}
117 d = LoadDictionaryFromLines(read_helper("META/misc_info.txt").split("\n"))
126 if "mkyaffs2_extra_flags" not in d:
128 d["mkyaffs2_extra_flags"] = read_helper(
134 if "recovery_api_version" not in d:
136 d["recovery_api_version"] = read_helper(
141 if "tool_extensions" not in d:
143 d["tool_extensions"] = read_helper("META/tool-extensions.txt").strip()
148 if "fstab_version" not in d:
149 d["fstab_version"] = "1"
160 d[name] = value
162 d[name + "_size"] = value
167 if key in d:
168 d[key] = int(d[key], 0)
180 d["fstab"] = LoadRecoveryFSTab(read_helper, d["fstab_version"])
181 d["build.prop"] = LoadBuildProp(read_helper)
182 return d
193 d = {}
200 d[name] = value
201 return d
220 d = {}
250 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[1],
255 d = {}
288 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[2],
295 return d
298 def DumpInfoDict(d): argument
299 for k, v in sorted(d.items()):
956 d, f = os.path.split(path)
960 info = imp.find_module(f, [d])
1139 for d in diff_iter:
1142 d.ComputePatch()
1146 tf, sf, patch = d.GetPatch()
1389 d = Difference(recovery_img, boot_img, diff_program=diff_program)
1390 _, _, patch = d.ComputePatch()