Home
last modified time | relevance | path

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

/aosp12/system/incremental_delivery/incfs/include/
H A Dincfs_inline.h108 return IncFs_GetControlFd(mControl, CMD); in cmd()
112 return IncFs_GetControlFd(mControl, PENDING_READS); in pendingReads()
116 return IncFs_GetControlFd(mControl, LOGS); in logs()
120 return IncFs_GetControlFd(mControl, BLOCKS_WRITTEN); in blocksWritten()
H A Dincfs_ndk.h218 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type);
/aosp12/system/incremental_delivery/incfs/tests/
H A Dincfs_test.cpp244 EXPECT_GE(IncFs_GetControlFd(control_, CMD), 0); in TEST_F()
245 EXPECT_GE(IncFs_GetControlFd(control_, PENDING_READS), 0); in TEST_F()
246 EXPECT_GE(IncFs_GetControlFd(control_, LOGS), 0); in TEST_F()
247 EXPECT_EQ((features() & Features::v2) != 0, IncFs_GetControlFd(control_, BLOCKS_WRITTEN) >= 0); in TEST_F()
255 EXPECT_LT(IncFs_GetControlFd(control_, CMD), 0); in TEST_F()
256 EXPECT_LT(IncFs_GetControlFd(control_, PENDING_READS), 0); in TEST_F()
257 EXPECT_LT(IncFs_GetControlFd(control_, LOGS), 0); in TEST_F()
258 EXPECT_LT(IncFs_GetControlFd(control_, BLOCKS_WRITTEN), 0); in TEST_F()
265 EXPECT_GE(IncFs_GetControlFd(control, CMD), 0); in TEST_F()
266 EXPECT_GE(IncFs_GetControlFd(control, PENDING_READS), 0); in TEST_F()
[all …]
/aosp12/system/incremental_delivery/incfs/
H A Dincfs.cpp613 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type) { in IncFs_GetControlFd() function