Home
last modified time | relevance | path

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

/system/incremental_delivery/incfs/tests/
Dincfs_test.cpp1093 EXPECT_EQ(-EINVAL, IncFs_ForEachFile(nullptr, nullptr, nullptr)); in TEST_F()
1095 EXPECT_EQ(-EINVAL, IncFs_ForEachFile(control_, nullptr, nullptr)); in TEST_F()
1097 EXPECT_EQ(0, IncFs_ForEachFile(control_, nullptr, [](auto, auto, auto) { return true; })); in TEST_F()
1101 EXPECT_EQ(0, IncFs_ForEachFile(control_, this, [](auto, auto, auto) { return true; })); in TEST_F()
1109 EXPECT_EQ(1, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
1120 EXPECT_EQ(1, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
1125 EXPECT_EQ(2, IncFs_ForEachFile(control_, this, [](auto, auto context, auto id) { in TEST_F()
/system/incremental_delivery/incfs/include/
Dincfs_ndk.h289 IncFsErrorCode IncFs_ForEachFile(const IncFsControl* control, void* context, FileCallback cb);
Dincfs_inline.h387 return IncFs_ForEachFile(control, &context, [](void* pcontext, const IncFsControl*, FileId id) { in forEachFile()
/system/incremental_delivery/incfs/
Dincfs.cpp1780 IncFsErrorCode IncFs_ForEachFile(const IncFsControl* control, void* context, FileCallback cb) { in IncFs_ForEachFile() function