Home
last modified time | relevance | path

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

/bootable/recovery/updater/
Dupdater_runtime.cpp69 static bool setMountFlag(const std::string& flag, unsigned* mount_flags) { in setMountFlag() argument
72 *mount_flags |= value; in setMountFlag()
79 static bool parseMountFlags(const std::string& flags, unsigned* mount_flags, in parseMountFlags() argument
84 if (!setMountFlag(flag, mount_flags)) { in parseMountFlags()
100 unsigned mount_flags = 0; in Mount() local
115 if (!parseMountFlags(mount_options_string, &mount_flags, &fs_options)) { in Mount()
117 mount_flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME; in Mount()
121 std::string(fs_type).c_str(), mount_flags, fs_options.c_str()); in Mount()