Home
last modified time | relevance | path

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

/system/core/init/
Dmount_namespace.cpp55 static bool ChangeMount(const std::string& mount_point, unsigned long mountflags) { in ChangeMount() argument
56 if (mount(nullptr, mount_point.c_str(), nullptr, mountflags, nullptr) == -1) { in ChangeMount()
57 PLOG(ERROR) << "Failed to remount " << mount_point << " as " << std::hex << mountflags; in ChangeMount()
/system/update_engine/common/
Dutils.cc544 unsigned long mountflags, // NOLINT(runtime/int) in MountFilesystem() argument
557 mountflags, in MountFilesystem()
/system/core/fs_mgr/
Dfs_mgr.cpp765 unsigned long mountflags = entry.flags; in __mount() local
773 ret = mount(source.c_str(), target.c_str(), entry.fs_type.c_str(), mountflags, in __mount()
789 if ((ret == 0) && (mountflags & MS_RDONLY) != 0) { in __mount()