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, Bind{std::string(), int(index)}).first; in addRoot()
139 auto it = rootByBindPoint.find(absolute); in removeRoot()
140 if (it == rootByBindPoint.end()) { in removeRoot()
152 rootByBindPoint.erase(bindIt); in removeRoot()
179 auto it = rootByBindPoint in addBind()
[all …]
/system/incremental_delivery/incfs/include/
DMountRegistry.h101 BindMap rootByBindPoint; variable