Home
last modified time | relevance | path

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

/system/incremental_delivery/incfs/
DMountRegistry.cpp79 rootByBindPoint.swap(other.rootByBindPoint); in swap()
84 rootByBindPoint.clear(); in clear()
89 auto it = rootByBindPoint.lower_bound(path); in rootIndex()
90 if (it != rootByBindPoint.end() && it->first == path) { in rootIndex()
93 if (it != rootByBindPoint.begin()) { in rootIndex()
133 auto it = rootByBindPoint.insert_or_assign(absolute, std::pair{std::string(), index}).first; in addRoot()
139 auto it = rootByBindPoint.find(absolute); in removeRoot()
140 if (it == rootByBindPoint.end()) { in removeRoot()
161 rootByBindPoint.erase(it); in removeRoot()
183 const auto newRootIt = rootByBindPoint in moveBind()
[all …]
/system/incremental_delivery/incfs/include/
DMountRegistry.h98 BindMap rootByBindPoint; variable