Lines Matching defs:device
87 "The device '%s' doesn't have a valid NTFS.\n"
88 "Maybe you selected the wrong device? Or the whole disk instead of a\n"
104 " notification area before disconnecting the device.\n"
105 " C) Use 'Eject' from Windows Explorer to safely remove the device.\n"
127 "different device under /dev/mapper, (e.g. /dev/mapper/nvidia_eahaabcc1)\n"
197 * utils_valid_device - Perform some safety checks on the device, before start
198 * @name: Full pathname of the device/file to work with
201 * Check that the name refers to a device and that is isn't already mounted.
205 * 0 Error, we cannot use this device
223 ntfs_log_error("The device %s doesn't exist\n", name);
257 ntfs_volume * utils_mount_volume(const char *device, unsigned long flags)
261 if (!device) {
281 if (!utils_valid_device(device, flags & NTFS_MNT_RECOVER))
284 vol = ntfs_mount(device, flags);
286 ntfs_log_perror("Failed to mount '%s'", device);
288 ntfs_log_error(invalid_ntfs_msg, device);