Searched defs:volume (Results 1 - 3 of 3) sorted by relevance

/bootable/recovery/
H A Dmounts.cpp72 int unmount_mounted_volume(MountedVolume* volume) { argument
73 // Intentionally pass the empty string to umount if the caller tries to unmount a volume they
75 std::string mount_point = volume->mount_point;
76 volume->mount_point.clear();
H A Droots.cpp76 // Finds the volume specified by the given path. fs_mgr_get_entry_for_mount_point() does exact match
99 // Mount the volume specified by path at the given mount_point.
103 LOG(ERROR) << "unknown volume for path [" << path << "]";
161 LOG(ERROR) << "unknown volume for path [" << path << "]";
228 int format_volume(const char* volume, const char* directory) { argument
229 const Volume* v = volume_for_path(volume);
231 LOG(ERROR) << "unknown volume \"" << volume << "\"";
235 LOG(ERROR) << "can't format_volume \"" << volume << "\"";
238 if (strcmp(v->mount_point, volume) !
365 format_volume(const char* volume) argument
[all...]
H A Drecovery.cpp526 static bool erase_volume(const char* volume) { argument
527 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
528 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
541 ensure_path_mounted(volume);
573 ui->Print("Formatting %s...\n", volume);
575 ensure_path_unmounted(volume);
592 result = format_volume(volume, CONVERT_FBE_DIR);
596 result = format_volume(volume);

Completed in 97 milliseconds