Lines Matching refs:mIncFs

690             mIncFs(std::move(incfs)),  in MockServiceManager()
702 std::unique_ptr<IncFsWrapper> getIncFs() final { return std::move(mIncFs); } in getIncFs()
718 std::unique_ptr<MockIncFs> mIncFs; member in android::os::incremental::MockServiceManager
740 mIncFs = incFs.get(); in SetUp()
785 ON_CALL(*mIncFs, getMetadata(_, std::string_view(mountInfoFile))) in setUpExistingMountDir()
786 .WillByDefault(Invoke(mIncFs, &MockIncFs::getMountInfoMetadata)); in setUpExistingMountDir()
787 ON_CALL(*mIncFs, getMetadata(_, std::string_view(mountPointsFile))) in setUpExistingMountDir()
788 .WillByDefault(Invoke(mIncFs, &MockIncFs::getBindPointMetadata)); in setUpExistingMountDir()
789 ON_CALL(*mIncFs, getMetadata(_, std::string_view(rootDir + "/dir1/mount/st0"))) in setUpExistingMountDir()
790 .WillByDefault(Invoke(mIncFs, &MockIncFs::getStorageMetadata)); in setUpExistingMountDir()
795 mIncFs->makeFileSuccess(); in setupSuccess()
854 NiceMock<MockIncFs>* mIncFs = nullptr; member in android::os::incremental::IncrementalServiceTest
892 mIncFs->makeFileFails(); in TEST_F()
905 mIncFs->makeFileSuccess(); in TEST_F()
919 mIncFs->makeFileSuccess(); in TEST_F()
1022 mIncFs->waitForPendingReadsSuccess(); in TEST_F()
1023 mIncFs->openMountSuccess(); in TEST_F()
1219 mIncFs->waitForPendingReadsSuccess(); in TEST_F()
1220 mIncFs->openMountSuccess(); in TEST_F()
1256 mIncFs->openMountSuccess(); in TEST_F()
1314 mIncFs->openMountSuccess(); in TEST_F()
1372 mIncFs->waitForPendingReadsSuccess(kFirstTimestampUs); in TEST_F()
1387 mIncFs->waitForPendingReadsSuccess(kBlockedTimestampUs); in TEST_F()
1404 mIncFs->waitForPendingReadsSuccess(kUnhealthyTimestampUs); in TEST_F()
1421 mIncFs->waitForPendingReadsSuccess(kUnhealthyTimestampUs); in TEST_F()
1438 mIncFs->waitForPendingReadsTimeout(); in TEST_F()
1755 EXPECT_CALL(*mIncFs, in TEST_F()
1775 EXPECT_CALL(*mIncFs, in TEST_F()
1790 EXPECT_CALL(*mIncFs, isFileFullyLoaded(_, An<std::string_view>())) in TEST_F()
1801 EXPECT_CALL(*mIncFs, isFileFullyLoaded(_, An<std::string_view>())) in TEST_F()
1812 EXPECT_CALL(*mIncFs, isFileFullyLoaded(_, An<std::string_view>())) in TEST_F()
1819 mIncFs->countFilledBlocksSuccess(); in TEST_F()
1830 mIncFs->countFilledBlocksFails(); in TEST_F()
1837 EXPECT_CALL(*mIncFs, countFilledBlocks(_, _)).Times(1); in TEST_F()
1842 mIncFs->countFilledBlocksEmpty(); in TEST_F()
1849 EXPECT_CALL(*mIncFs, countFilledBlocks(_, _)).Times(3); in TEST_F()
1854 mIncFs->countFilledBlocksSuccess(); in TEST_F()
1861 EXPECT_CALL(*mIncFs, countFilledBlocks(_, _)).Times(3); in TEST_F()
1866 mIncFs->countFilledBlocksSuccess(); in TEST_F()
1891 mIncFs->countFilledBlocksFails(); in TEST_F()
1937 EXPECT_CALL(*mIncFs, isEverythingFullyLoaded(_)) in TEST_F()
1953 EXPECT_CALL(*mIncFs, isEverythingFullyLoaded(_)).WillOnce(Return(incfs::LoadingState::Full)); in TEST_F()
1999 EXPECT_CALL(*mIncFs, isEverythingFullyLoaded(_)) in TEST_F()
2015 EXPECT_CALL(*mIncFs, isEverythingFullyLoaded(_)) in TEST_F()
2077 EXPECT_CALL(*mIncFs, setUidReadTimeouts(_, _)).Times(0); in TEST_F()
2095 EXPECT_CALL(*mIncFs, setUidReadTimeouts(_, _)) in TEST_F()
2103 EXPECT_CALL(*mIncFs, isEverythingFullyLoaded(_)) in TEST_F()
2218 ON_CALL(*mIncFs, getMetrics(_)) in TEST_F()
2228 ON_CALL(*mIncFs, getLastReadError(_)).WillByDefault(Return(LastReadError{})); in TEST_F()
2274 ON_CALL(*mIncFs, getMetrics(_)).WillByDefault(Return(Metrics{})); in TEST_F()
2277 ON_CALL(*mIncFs, getLastReadError(_)) in TEST_F()