Home | History | Annotate | Download | only in recovery

Lines Matching refs:format_volume

228 int format_volume(const char* volume, const char* directory) {
235 LOG(ERROR) << "can't format_volume \"" << volume << "\"";
239 LOG(ERROR) << "can't give path \"" << volume << "\" to format_volume";
243 LOG(ERROR) << "format_volume: Failed to unmount \"" << v->mount_point << "\"";
247 LOG(ERROR) << "format_volume: fs_type \"" << v->fs_type << "\" unsupported";
257 PLOG(ERROR) << "format_volume: Failed to open " << v->key_loc;
271 PLOG(ERROR) << "format_volume: failed to open " << v->blk_device;
320 PLOG(ERROR) << "format_volume: Failed to make ext4 on " << v->blk_device;
359 PLOG(ERROR) << "format_volume: Failed " << cmd << " on " << v->blk_device;
365 int format_volume(const char* volume) {
366 return format_volume(volume, nullptr);