Searched refs:binds (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/services/incremental/ |
H A D | ServiceWrappers.cpp | 151 auto binds = mount.binds(); // span() doesn't like rvalue containers, needs to save it. in listExistingMounts() local 152 cb(mount.root(), mount.backingDir(), binds); in listExistingMounts()
|
H A D | IncrementalService.cpp | 1454 mIncFs->listExistingMounts([this, &mountedRootNames](auto root, auto backingDir, auto binds) { in adoptMountedInstances() argument 1456 for (auto [source, target] : binds) { in adoptMountedInstances() 1487 for (auto&& [_, target] : binds) { in adoptMountedInstances() 1590 auto mountedIt = std::find_if(binds.begin(), binds.end(), in adoptMountedInstances() 1596 if (mountedIt != binds.end()) { in adoptMountedInstances() 1603 if (mountedIt != binds.end() - 1) { in adoptMountedInstances() 1604 std::iter_swap(mountedIt, binds.end() - 1); in adoptMountedInstances() 1606 binds = binds.first(binds.size() - 1); in adoptMountedInstances() 1623 for (auto&& [source, target] : binds) { in adoptMountedInstances()
|
H A D | ServiceWrappers.h | 88 std::span<std::pair<std::string_view, std::string_view>> binds)>;
|