Searched refs:mount_point (Results 1 – 3 of 3) sorted by relevance
/build/make/tools/releasetools/ |
D | build_image.py | 223 mount_point = prop_dict["mount_point"] 227 mount_point, total_blocks, used_blocks, headroom_blocks, 502 def ImagePropFromGlobalDict(glob_dict, mount_point): argument 548 d["mount_point"] = mount_point 549 if mount_point == "system": 579 elif mount_point == "system_other": 603 elif mount_point == "data": 613 elif mount_point == "cache": 617 elif mount_point == "vendor": 640 elif mount_point == "product": [all …]
|
D | edify_generator.py | 221 def Mount(self, mount_point, mount_options_by_format=""): argument 230 p = fstab[mount_point] 243 p.mount_point, mount_flags)) 244 self.mounts.add(p.mount_point) 279 p.length, p.mount_point)) 384 def WriteRawImage(self, mount_point, fn, mapfn=None): argument 390 p = fstab[mount_point] 410 def Unmount(self, mount_point): argument 411 self.script.append('unmount("%s");' % mount_point) 412 self.mounts.remove(mount_point)
|
D | common.py | 877 def __init__(self, mount_point, fs_type, device, length, context, slotselect): argument 878 self.mount_point = mount_point 929 mount_point = pieces[1] 930 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[2], 1929 mount_point = "/" + target 1934 if mount_point == "/userdata": 1935 mount_point = "/data" 1936 p = info_dict["fstab"][mount_point] 2965 def GetTypeAndDevice(mount_point, info, check_no_slot=True): argument 2974 assert not fstab[mount_point].slotselect, \ [all …]
|