Searched refs:rootFor (Results 1 – 4 of 4) sorted by relevance
/system/incremental_delivery/incfs/tests/ |
D | MountRegistry_test.cpp | 48 ASSERT_STREQ("/root", r().rootFor("/root").data()); in TEST_F() 49 ASSERT_STREQ("/root", r().rootFor("/root/1").data()); in TEST_F() 50 ASSERT_STREQ("/root", r().rootFor("/root/1/2").data()); in TEST_F() 51 ASSERT_STREQ(nullptr, r().rootFor("/root1/1/2").data()); in TEST_F() 52 ASSERT_STREQ(nullptr, r().rootFor("/1/root").data()); in TEST_F() 53 ASSERT_STREQ(nullptr, r().rootFor("root").data()); in TEST_F() 59 ASSERT_STREQ("/root", r().rootFor("/root").data()); in TEST_F() 60 ASSERT_STREQ("/root", r().rootFor("/bind").data()); in TEST_F() 61 ASSERT_STREQ("/root", r().rootFor("/bind/1").data()); in TEST_F() 62 ASSERT_STREQ("/root", r().rootFor("/root/1").data()); in TEST_F() [all …]
|
/system/incremental_delivery/incfs/include/ |
D | MountRegistry.h | 86 std::string_view rootFor(std::string_view path) const; 107 std::string rootFor(std::string_view path);
|
/system/incremental_delivery/incfs/ |
D | MountRegistry.cpp | 108 std::string_view MountRegistry::Mounts::rootFor(std::string_view path) const { in rootFor() function in android::incfs::MountRegistry::Mounts 215 std::string MountRegistry::rootFor(std::string_view path) { in rootFor() function in android::incfs::MountRegistry 217 return std::string(mMounts.rootFor(path)); in rootFor()
|
D | incfs.cpp | 608 auto root = registry().rootFor(dir); in IncFs_Open() 992 const auto pathRoot = registry().rootFor(path); in IncFs_GetMetadataByPath() 1015 const auto pathRoot = registry().rootFor(path); in IncFs_GetId() 1065 const auto pathRoot = registry().rootFor(path); in IncFs_GetSignatureByPath() 1277 const auto pathRoot = registry().rootFor(path); in IncFs_OpenForSpecialOpsByPath() 1597 return isFullyLoadedV2(registry().rootFor(fdPath), id); in IncFs_IsFullyLoaded() 1609 const auto pathRoot = registry().rootFor(path); in IncFs_IsFullyLoadedByPath() 1811 const auto pathRoot = registry().rootFor(path); in IncFs_GetFileBlockCountByPath()
|