Home
last modified time | relevance | path

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

/system/core/init/
Dmount_handler.h30 struct MountHandlerEntry { struct
31 MountHandlerEntry(const std::string& blk_device, const std::string& mount_point,
34 bool operator<(const MountHandlerEntry& r) const;
55 std::set<MountHandlerEntry> mounts_; argument
Dmount_handler.cpp47 MountHandlerEntry ParseMount(const std::string& line) { in ParseMount()
67 return MountHandlerEntry(fields[0], fields[1], fields[2]); in ParseMount()
70 void SetMountProperty(const MountHandlerEntry& entry, bool add) { in SetMountProperty()
103 MountHandlerEntry::MountHandlerEntry(const std::string& blk_device, const std::string& mount_point, in MountHandlerEntry() function in android::init::MountHandlerEntry
107 bool MountHandlerEntry::operator<(const MountHandlerEntry& r) const { in operator <()
128 std::vector<MountHandlerEntry> touched; in MountHandlerFunction()