Searched refs:IncFs_GetControlFd (Results 1 – 5 of 5) sorted by relevance
/system/incremental_delivery/incfs/tests/ |
D | incfs_test.cpp | 222 EXPECT_GE(IncFs_GetControlFd(control_, CMD), 0); in TEST_F() 223 EXPECT_GE(IncFs_GetControlFd(control_, PENDING_READS), 0); in TEST_F() 224 EXPECT_GE(IncFs_GetControlFd(control_, LOGS), 0); in TEST_F() 232 EXPECT_LT(IncFs_GetControlFd(control_, CMD), 0); in TEST_F() 233 EXPECT_LT(IncFs_GetControlFd(control_, PENDING_READS), 0); in TEST_F() 234 EXPECT_LT(IncFs_GetControlFd(control_, LOGS), 0); in TEST_F() 241 EXPECT_GE(IncFs_GetControlFd(control, CMD), 0); in TEST_F() 242 EXPECT_GE(IncFs_GetControlFd(control, PENDING_READS), 0); in TEST_F() 243 EXPECT_GE(IncFs_GetControlFd(control, LOGS), 0); in TEST_F()
|
/system/incremental_delivery/incfs/include/ |
D | incfs_inline.h | 104 return IncFs_GetControlFd(mControl, CMD); in cmd() 108 return IncFs_GetControlFd(mControl, PENDING_READS); in pendingReads() 112 return IncFs_GetControlFd(mControl, LOGS); in logs()
|
D | incfs_ndk.h | 159 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type);
|
/system/vold/ |
D | VoldNativeService.cpp | 873 _aidl_return->cmd.emplace(unique_fd(dup(IncFs_GetControlFd(control, CMD)))); in mountIncFs() 874 _aidl_return->pendingReads.emplace(unique_fd(dup(IncFs_GetControlFd(control, PENDING_READS)))); in mountIncFs() 875 auto logsFd = IncFs_GetControlFd(control, LOGS); in mountIncFs()
|
/system/incremental_delivery/incfs/ |
D | incfs.cpp | 482 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type) { in IncFs_GetControlFd() function
|