Home | History | Annotate | Download | only in mtdutils

Lines Matching refs:volume

46 free_volume_internals(const MountedVolume *volume, int zero)
48 free((char *)volume->device);
49 free((char *)volume->mount_point);
50 free((char *)volume->filesystem);
51 free((char *)volume->flags);
53 memset((void *)volume, 0, sizeof(*volume));
78 /* Free the old volume strings.
202 unmount_mounted_volume(const MountedVolume *volume)
205 * to unmount a volume they already unmounted using this
208 int ret = umount(volume->mount_point);
210 free_volume_internals(volume, 1);
217 remount_read_only(const MountedVolume* volume)
219 return mount(volume->device, volume->mount_point, volume->filesystem,