Home
last modified time | relevance | path

Searched refs:mnt_type (Results 1 – 4 of 4) sorted by relevance

/system/core/fs_mgr/
Dfs_mgr_overlayfs.cpp547 bool fs_mgr_overlayfs_mount_scratch(const std::string& device_path, const std::string mnt_type, in fs_mgr_overlayfs_mount_scratch() argument
569 entry.fs_type = mnt_type; in fs_mgr_overlayfs_mount_scratch()
570 if ((mnt_type == "f2fs") && !f2fs) entry.fs_type = "ext4"; in fs_mgr_overlayfs_mount_scratch()
571 if ((mnt_type == "ext4") && !ext4) entry.fs_type = "f2fs"; in fs_mgr_overlayfs_mount_scratch()
632 bool fs_mgr_overlayfs_make_scratch(const std::string& scratch_device, const std::string& mnt_type) { in fs_mgr_overlayfs_make_scratch() argument
636 if (mnt_type == "f2fs") { in fs_mgr_overlayfs_make_scratch()
638 } else if (mnt_type == "ext4") { in fs_mgr_overlayfs_make_scratch()
642 LERROR << mnt_type << " has no mkfs cookbook"; in fs_mgr_overlayfs_make_scratch()
649 LERROR << "make " << mnt_type << " filesystem on " << scratch_device << " return=" << ret; in fs_mgr_overlayfs_make_scratch()
749 auto mnt_type = fs_mgr_overlayfs_scratch_mount_type(); in fs_mgr_overlayfs_setup_scratch() local
[all …]
/system/extras/pagecache/
Ddumpcache.c145 if (strcmp(mentry->mnt_type, "rootfs") != 0 && in main()
/system/core/init/
Dreboot.cpp90 mnt_type_(entry.mnt_type), in MountEntry()
184 << mentry->mnt_opts << " type " << mentry->mnt_type; in FindPartitionsToUmount()
/system/core/fs_mgr/tests/
Dfs_mgr_test.cpp158 EXPECT_EQ(mentry->mnt_type, entry.fs_type); in TEST()