Home | History | Annotate | Download | only in recovery

Lines Matching full:blk_device

64                v->blk_device, v->length);
109 partition = mtd_find_partition_by_name(v->blk_device);
112 v->blk_device, mount_point);
119 result = mount(v->blk_device, mount_point, v->fs_type,
201 const MtdPartition* partition = mtd_find_partition_by_name(v->blk_device);
203 LOGE("format_volume: no MTD partition \"%s\"\n", v->blk_device);
209 LOGW("format_volume: can't open MTD \"%s\"\n", v->blk_device);
212 LOGW("format_volume: can't erase MTD \"%s\"\n", v->blk_device);
216 LOGW("format_volume: can't close MTD \"%s\"\n", v->blk_device);
244 result = make_ext4fs_directory(v->blk_device, length, volume, sehandle, directory);
256 LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device);
260 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", v->blk_device, num_sectors, NULL};
266 LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno));