Searched refs:mount_point (Results 1 – 3 of 3) sorted by relevance
/build/tools/releasetools/ |
D | build_image.py | 291 def ImagePropFromGlobalDict(glob_dict, mount_point): argument 320 d["mount_point"] = mount_point 321 if mount_point == "system": 326 elif mount_point == "data": 331 elif mount_point == "cache": 334 elif mount_point == "vendor": 339 elif mount_point == "oem": 372 mount_point = "" 374 mount_point = "system" 376 mount_point = "data" [all …]
|
D | edify_generator.py | 167 def Mount(self, mount_point, mount_options_by_format=""): argument 176 p = fstab[mount_point] 185 p.device, p.mount_point, mount_dict.get(p.fs_type, ""))) 186 self.mounts.add(p.mount_point) 225 p.device, p.length, p.mount_point)) 270 def WriteRawImage(self, mount_point, fn, mapfn=None): argument 276 p = fstab[mount_point] 337 def Unmount(self, mount_point): argument 338 self.script.append('unmount("%s");' % (mount_point,)) 339 self.mounts.remove(mount_point);
|
D | common.py | 215 p.mount_point = pieces[0] 237 print "%s: unknown option \"%s\"" % (p.mount_point, i) 239 d[p.mount_point] = p 257 p.mount_point = pieces[1] 270 d[p.mount_point] = p 528 mount_point = "/" + target 533 if mount_point == "/userdata": mount_point = "/data" 534 p = info_dict["fstab"][mount_point] 1113 def GetTypeAndDevice(mount_point, info): argument 1116 return PARTITION_TYPES[fstab[mount_point].fs_type], fstab[mount_point].device
|