Lines Matching refs:p
177 p = fstab[mount_point]
184 mount_flags = mount_dict.get(p.fs_type, "")
185 if p.context is not None:
186 mount_flags = p.context + ("," + mount_flags if mount_flags else "")
188 p.fs_type, common.PARTITION_TYPES[p.fs_type], p.device,
189 p.mount_point, mount_flags))
190 self.mounts.add(p.mount_point)
211 p = fstab[partition]
212 if p.fs_type not in ("ext2", "ext3", "ext4"):
217 p.device, partition))
225 p = fstab[partition]
227 (p.fs_type, common.PARTITION_TYPES[p.fs_type],
228 p.device, p.length, p.mount_point))
289 p = fstab[mount_point]
290 partition_type = common.PARTITION_TYPES[p.fs_type]
291 args = {'device': p.device, 'fn': fn}
306 "don't know how to write \"%s\" partitions" % p.fs_type)
359 for p in sorted(self.mounts):
360 self.script.append('unmount("%s");' % (p,))