Home
last modified time | relevance | path

Searched refs:fs_type (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/otautil/
Droots.cpp61 .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()
138 if (v->fs_type == "ramdisk") { in format_volume()
150 if (v->fs_type != "ext4" && v->fs_type != "f2fs") { in format_volume()
151 LOG(ERROR) << "format_volume: fs_type \"" << v->fs_type << "\" unsupported"; in format_volume()
184 if (v->fs_type == "ext4") { in format_volume()
/bootable/recovery/updater/
Dinstall.cpp291 const std::string& fs_type = args[0]; in MountFn() local
301 if (fs_type.empty()) { in MountFn()
332 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(), in MountFn()
431 const std::string& fs_type = args[0]; in FormatFn() local
437 if (fs_type.empty()) { in FormatFn()
458 if (fs_type == "ext4") { in FormatFn()
479 if (fs_type == "f2fs") { in FormatFn()
504 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \"" in FormatFn()
/bootable/recovery/uncrypt/
Duncrypt.cpp189 if (entry.fs_type == "f2fs") { in FindBlockDevice()