Lines Matching refs:mount_point
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, \
2976 return (PARTITION_TYPES[fstab[mount_point].fs_type],
2977 fstab[mount_point].device)
2981 def GetTypeAndDeviceExpr(mount_point, info): argument
2988 p = fstab[mount_point]
2989 device_expr = '"%s"' % fstab[mount_point].device
2992 return (PARTITION_TYPES[fstab[mount_point].fs_type], device_expr)
3003 for mount_point in fstab:
3004 if fstab[mount_point].device == device:
3005 return fstab[mount_point]