Home
last modified time | relevance | path

Searched refs:mount_flags (Results 1 – 7 of 7) sorted by relevance

/system/core/fs_mgr/
Dfs_mgr_priv.h99 std::string mount_flags; member
Dfs_mgr_vendor_overlay.cpp89 android::fs_mgr::CheckOverlayfs().mount_flags; in fs_mgr_vendor_overlay_mount()
Dfs_mgr.cpp2356 const auto options = "lowerdir=" + lowerdir + overlayfs_check_result.mount_flags; in fs_mgr_mount_overlayfs_fstab_entry()
2429 auto mount_flags = ",override_creds=off"s; in CheckOverlayfs() local
2431 mount_flags += ",userxattr"s; in CheckOverlayfs()
2433 return {.supported = true, .mount_flags = mount_flags}; in CheckOverlayfs()
Dfs_mgr_overlayfs_mount.cpp245 kWorkdirOption + work + android::fs_mgr::CheckOverlayfs().mount_flags; in fs_mgr_get_overlayfs_options()
/system/core/init/
Dbuiltins.cpp459 } mount_flags[] = { variable
486 for (i = 0; mount_flags[i].name; i++) { in do_mount()
487 if (!args[na].compare(mount_flags[i].name)) { in do_mount()
488 flags |= mount_flags[i].flag; in do_mount()
493 if (!mount_flags[i].name) { in do_mount()
/system/core/fs_mgr/tests/
Dfs_mgr_test.cpp316 } mount_flags[] = { in TEST() local
335 for (auto f = 0; mount_flags[f].name; ++f) { in TEST()
336 if (mount_flags[f].flag & entry.flags) { in TEST()
337 fs_options.emplace(mount_flags[f].name); in TEST()
/system/apex/apexd/
Dapexd.cpp607 uint32_t mount_flags = MS_NOATIME | MS_NODEV | MS_DIRSYNC | MS_RDONLY; in MountPackageImpl() local
609 mount_flags |= MS_NOEXEC; in MountPackageImpl()
616 apex.GetFsType().value().c_str(), mount_flags, nullptr) == 0) { in MountPackageImpl()