Home
last modified time | relevance | path

Searched refs:IncFs_ForEachFile (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/incremental_delivery/incfs/tests/
H A Dincfs_test.cpp1131 EXPECT_EQ(-EINVAL, IncFs_ForEachFile(nullptr, nullptr, nullptr)); in TEST_F()
1133 EXPECT_EQ(-EINVAL, IncFs_ForEachFile(control_, nullptr, nullptr)); in TEST_F()
1135 EXPECT_EQ(0, IncFs_ForEachFile(control_, nullptr, [](auto, auto, auto) { return true; })); in TEST_F()
1139 EXPECT_EQ(0, IncFs_ForEachFile(control_, this, [](auto, auto, auto) { return true; })); in TEST_F()
1147 EXPECT_EQ(1, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
1158 EXPECT_EQ(1, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
1163 EXPECT_EQ(2, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
/aosp12/system/incremental_delivery/incfs/include/
H A Dincfs_ndk.h291 IncFsErrorCode IncFs_ForEachFile(const IncFsControl* control, void* context, FileCallback cb);
H A Dincfs_inline.h387 return IncFs_ForEachFile(control, &context, [](void* pcontext, const IncFsControl*, FileId id) { in forEachFile()
/aosp12/system/incremental_delivery/incfs/
H A Dincfs.cpp1845 IncFsErrorCode IncFs_ForEachFile(const IncFsControl* control, void* context, FileCallback cb) { in IncFs_ForEachFile() function