Home | History | Annotate | Download | only in recovery

Lines Matching refs:blk_device

66                v->blk_device, v->length);
106 partition = mtd_find_partition_by_name(v->blk_device);
109 v->blk_device, v->mount_point);
116 result = mount(v->blk_device, v->mount_point, v->fs_type,
193 const MtdPartition* partition = mtd_find_partition_by_name(v->blk_device);
195 LOGE("format_volume: no MTD partition \"%s\"\n", v->blk_device);
201 LOGW("format_volume: can't open MTD \"%s\"\n", v->blk_device);
204 LOGW("format_volume: can't erase MTD \"%s\"\n", v->blk_device);
208 LOGW("format_volume: can't close MTD \"%s\"\n", v->blk_device);
236 result = make_ext4fs(v->blk_device, length, volume, sehandle);
248 LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device);
252 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", v->blk_device, num_sectors, NULL};
258 LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno));