Lines Matching refs:blk_device
61 .mount_point = "/tmp", .fs_type = "ramdisk", .blk_device = "ramdisk", .length = 0 }); in load_volume_table()
67 << " " << entry.fs_type << " " << entry.blk_device << " " << entry.length in load_volume_table()
172 android::base::unique_fd fd(open(v->blk_device.c_str(), O_RDONLY)); in format_volume()
174 PLOG(ERROR) << "format_volume: failed to open " << v->blk_device; in format_volume()
179 LOG(ERROR) << "get_file_size: invalid size " << length << " for " << v->blk_device; in format_volume()
201 mke2fs_args.push_back(v->blk_device); in format_volume()
209 "/system/bin/e2fsdroid", "-e", "-f", directory, "-a", volume, v->blk_device, in format_volume()
215 PLOG(ERROR) << "format_volume: Failed to make ext4 on " << v->blk_device; in format_volume()
227 v->blk_device, in format_volume()
234 PLOG(ERROR) << "format_volume: Failed to make_f2fs on " << v->blk_device; in format_volume()
239 "/system/bin/sload_f2fs", "-f", directory, "-t", volume, v->blk_device, in format_volume()
242 PLOG(ERROR) << "format_volume: Failed to sload_f2fs on " << v->blk_device; in format_volume()