Home | History | Annotate | Download | only in vold

Lines Matching full:devicepath

228     char devicePath[255];
237 sprintf(devicePath, "/dev/block/vold/%d:%d",
240 if (initializeMbr(devicePath)) {
246 sprintf(devicePath, "/dev/block/vold/%d:%d",
250 SLOGI("Formatting volume %s (%s)", getLabel(), devicePath);
253 if (Fat::format(devicePath, 0)) {
390 char devicePath[255];
392 sprintf(devicePath, "/dev/block/vold/%d:%d", MAJOR(deviceNodes[i]),
395 SLOGI("%s being considered for volume %s\n", devicePath, getLabel());
400 if (Fat::check(devicePath)) {
402 SLOGW("%s does not contain a FAT filesystem\n", devicePath);
407 SLOGE("%s failed FS checks (%s)", devicePath, strerror(errno));
427 if (Fat::doMount(devicePath, "/mnt/secure/staging", false, false, false,
429 SLOGE("%s failed to mount via VFAT (%s)\n", devicePath, strerror(errno));
433 SLOGI("Device %s, target %s mounted @ /mnt/secure/staging", devicePath, getMountpoint());