Home
last modified time | relevance | path

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

/bootable/recovery/updater/include/updater/
Dtarget_files.h30 FstabInfo(std::string blockdev_name, std::string mount_point, std::string fs_type) in FstabInfo() argument
33 fs_type(std::move(fs_type)) {} in FstabInfo()
37 std::string fs_type; variable
Dupdater_runtime.h44 const std::string_view fs_type, const std::string_view mount_options) override;
Dsimulator_runtime.h41 const std::string_view fs_type, const std::string_view mount_options) override;
/bootable/recovery/recovery_utils/
Droots.cpp60 .fs_type = "ramdisk", in load_volume_table()
68 << " " << entry.fs_type << " " << entry.blk_device << " " << entry.length in load_volume_table()
139 if (v->fs_type == "ramdisk") { in format_volume()
151 if (v->fs_type != "ext4" && v->fs_type != "f2fs") { in format_volume()
152 LOG(ERROR) << "format_volume: fs_type \"" << v->fs_type << "\" unsupported"; in format_volume()
193 if (v->fs_type == "ext4") { in format_volume()
/bootable/recovery/updater/
Dtarget_files.cpp89 const auto& fs_type = tokens[2]; in ParseFstab() local
96 if (fs_type != "ext4" && fs_type != "emmc") { in ParseFstab()
101 fstab_info_list->emplace_back(blockdev, mount_point, fs_type); in ParseFstab()
239 if (fstab_info.fs_type == "emmc" || misc_info_.find("extfs_sparse_flag") == misc_info_.end()) { in ExtractImage()
Dupdater_runtime.cpp96 const std::string_view fs_type, const std::string_view mount_options) { in Mount() argument
121 std::string(fs_type).c_str(), mount_flags, fs_options.c_str()); in Mount()
Dinstall.cpp291 const std::string& fs_type = args[0]; in MountFn() local
301 if (fs_type.empty()) { in MountFn()
317 if (updater->GetRuntime()->Mount(location, mount_point, fs_type, mount_options) != 0) { in MountFn()
396 const std::string& fs_type = args[0]; in FormatFn() local
402 if (fs_type.empty()) { in FormatFn()
424 if (fs_type == "ext4") { in FormatFn()
446 if (fs_type == "f2fs") { in FormatFn()
472 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \"" in FormatFn()
/bootable/recovery/edify/include/edify/
Dupdater_runtime_interface.h45 const std::string_view fs_type, const std::string_view mount_options) = 0;
/bootable/recovery/tests/unit/host/
Dupdate_simulator_test.cpp183 return std::vector<string>{ info.blockdev_name, info.mount_point, info.fs_type }; in TEST_F()
/bootable/recovery/uncrypt/
Duncrypt.cpp189 if (entry.fs_type == "f2fs") { in FindBlockDevice()