Searched refs:fs_type (Results 1 – 10 of 10) sorted by relevance
/bootable/recovery/updater/include/updater/ |
D | target_files.h | 30 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
|
D | updater_runtime.h | 44 const std::string_view fs_type, const std::string_view mount_options) override;
|
D | simulator_runtime.h | 41 const std::string_view fs_type, const std::string_view mount_options) override;
|
/bootable/recovery/recovery_utils/ |
D | roots.cpp | 60 .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/ |
D | target_files.cpp | 89 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()
|
D | updater_runtime.cpp | 96 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()
|
D | install.cpp | 291 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/ |
D | updater_runtime_interface.h | 45 const std::string_view fs_type, const std::string_view mount_options) = 0;
|
/bootable/recovery/tests/unit/host/ |
D | update_simulator_test.cpp | 183 return std::vector<string>{ info.blockdev_name, info.mount_point, info.fs_type }; in TEST_F()
|
/bootable/recovery/uncrypt/ |
D | uncrypt.cpp | 189 if (entry.fs_type == "f2fs") { in FindBlockDevice()
|