HomeSort by relevance Sort by last modified time
    Searched refs:blk_device (Results 1 - 5 of 5) sorted by null

  /bootable/recovery/
bootloader.cpp 75 const MtdPartition *part = mtd_find_partition_by_name(v->blk_device);
77 LOGE("Can't find %s\n", v->blk_device);
83 LOGE("Can't open %s\n(%s)\n", v->blk_device, strerror(errno));
90 if (r != size) LOGE("Can't read %s\n(%s)\n", v->blk_device, strerror(errno));
101 const MtdPartition *part = mtd_find_partition_by_name(v->blk_device);
103 LOGE("Can't find %s\n", v->blk_device);
109 LOGE("Can't open %s\n(%s)\n", v->blk_device, strerror(errno));
116 if (r != size) LOGE("Can't read %s\n(%s)\n", v->blk_device, strerror(errno));
124 LOGE("Can't open %s\n(%s)\n", v->blk_device, strerror(errno));
128 LOGE("Can't write %s\n(%s)\n", v->blk_device, strerror(errno))
    [all...]
roots.cpp 60 v->blk_device, v->length);
100 partition = mtd_find_partition_by_name(v->blk_device);
103 v->blk_device, v->mount_point);
109 result = mount(v->blk_device, v->mount_point, v->fs_type,
172 const MtdPartition* partition = mtd_find_partition_by_name(v->blk_device);
174 LOGE("format_volume: no MTD partition \"%s\"\n", v->blk_device);
180 LOGW("format_volume: can't open MTD \"%s\"\n", v->blk_device);
183 LOGW("format_volume: can't erase MTD \"%s\"\n", v->blk_device);
187 LOGW("format_volume: can't close MTD \"%s\"\n", v->blk_device);
194 int result = make_ext4fs(v->blk_device, v->length, volume, sehandle)
    [all...]
  /system/core/fs_mgr/include/
fs_mgr.h 31 char *blk_device; member in struct:fstab_rec
54 const char *blk_device, long long length);
  /system/core/fs_mgr/
fs_mgr.c 359 fstab->recs[cnt].blk_device = strdup(p);
414 free(fstab->recs[i].blk_device);
433 static void check_fs(char *blk_device, char *fs_type, char *target)
442 blk_device
460 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts);
465 INFO("Running %s on %s\n", E2FSCK_BIN, blk_device);
534 wait_for_file(fstab->recs[i].blk_device, WAIT_TIMEOUT);
538 check_fs(fstab->recs[i].blk_device, fstab->recs[i].fs_type,
542 mret = mount(fstab->recs[i].blk_device, fstab->recs[i].mount_point,
552 !partition_wiped(fstab->recs[i].blk_device)) {
    [all...]
  /system/vold/
main.cpp 181 if (dv->addPath(fstab->recs[i].blk_device)) {
183 fstab->recs[i].blk_device, fstab->recs[i].label);

Completed in 130 milliseconds