Lines Matching refs:p
176 p = fstab[mount_point]
184 (p.fs_type, common.PARTITION_TYPES[p.fs_type],
185 p.device, p.mount_point, mount_dict.get(p.fs_type, "")))
186 self.mounts.add(p.mount_point)
211 p = fstab[partition]
213 (p.fs_type, common.PARTITION_TYPES[p.fs_type],
214 p.device, p.length, p.mount_point))
265 p = fstab[mount_point]
266 partition_type = common.PARTITION_TYPES[p.fs_type]
267 args = {'device': p.device, 'fn': fn}
281 raise ValueError("don't know how to write \"%s\" partitions" % (p.fs_type,))
331 for p in sorted(self.mounts):
332 self.script.append('unmount("%s");' % (p,))