Lines Matching full:mount_point
196 def Mount(self, mount_point, mount_options_by_format=""):
197 """Mount the partition with the given mount_point.
205 p = fstab[mount_point]
217 p.mount_point, mount_flags))
218 self.mounts.add(p.mount_point)
256 p.device, p.length, p.mount_point))
312 def WriteRawImage(self, mount_point, fn, mapfn=None):
318 p = fstab[mount_point]
383 def Unmount(self, mount_point):
384 self.script.append('unmount("%s");' % mount_point)
385 self.mounts.remove(mount_point)