Lines Matching refs:mount_point
28 const char *mount_point; member
49 free((char *)volume->mount_point); in free_volume_internals()
117 char mount_point[64]; in scan_mounted_volumes() local
125 device, mount_point, filesystem, flags); in scan_mounted_volumes()
129 mount_point[sizeof(mount_point)-1] = '\0'; in scan_mounted_volumes()
136 v->mount_point = strdup(mount_point); in scan_mounted_volumes()
183 find_mounted_volume_by_mount_point(const char *mount_point) in find_mounted_volume_by_mount_point() argument
191 if (v->mount_point != NULL) { in find_mounted_volume_by_mount_point()
192 if (strcmp(v->mount_point, mount_point) == 0) { in find_mounted_volume_by_mount_point()
208 int ret = umount(volume->mount_point); in unmount_mounted_volume()
219 return mount(volume->device, volume->mount_point, volume->filesystem, in remount_read_only()