Home
last modified time | relevance | path

Searched refs:isFullyLoaded (Results 1 – 10 of 10) sorted by relevance

/aosp12/system/incremental_delivery/incfs/include/
H A Dincfs.h276 LoadingState isFullyLoaded(int fd);
277 LoadingState isFullyLoaded(const Control& control, std::string_view path);
278 LoadingState isFullyLoaded(const Control& control, FileId fileId);
H A Dincfs_inline.h351 inline LoadingState isFullyLoaded(int fd) { in isFullyLoaded() function
354 inline LoadingState isFullyLoaded(const Control& control, std::string_view path) { in isFullyLoaded() function
357 inline LoadingState isFullyLoaded(const Control& control, FileId fileId) { in isFullyLoaded() function
/aosp12/system/incremental_delivery/incfs/tests/
H A Dincfs_test.cpp775 EXPECT_EQ(LoadingState::MissingBlocks, isFullyLoaded(fd.get())); in TEST_F()
795 EXPECT_EQ(LoadingState::Full, isFullyLoaded(fd.get())); in TEST_F()
1463 ASSERT_EQ(LoadingState::MissingBlocks, isFullyLoaded(control_, file_path)); in TEST_F()
1464 ASSERT_EQ(LoadingState::MissingBlocks, isFullyLoaded(control_, file_id)); in TEST_F()
1465 ASSERT_EQ((LoadingState)-ENOTSUP, isFullyLoaded(control_, mapped_file_path)); in TEST_F()
1476 ASSERT_EQ(LoadingState::MissingBlocks, isFullyLoaded(control_, file_path)); in TEST_F()
1477 ASSERT_EQ(LoadingState::MissingBlocks, isFullyLoaded(control_, file_id)); in TEST_F()
1478 ASSERT_EQ((LoadingState)-ENOTSUP, isFullyLoaded(control_, mapped_file_path)); in TEST_F()
1489 ASSERT_EQ(LoadingState::Full, isFullyLoaded(control_, file_path)); in TEST_F()
1490 ASSERT_EQ(LoadingState::Full, isFullyLoaded(control_, file_id)); in TEST_F()
[all …]
/aosp12/frameworks/base/core/java/android/os/incremental/
H A DIncrementalStorage.java334 public boolean isFullyLoaded() throws IOException { in isFullyLoaded() method in IncrementalStorage
336 final int res = mService.isFullyLoaded(mId); in isFullyLoaded()
H A DIIncrementalService.aidl121 int isFullyLoaded(int storageId); in isFullyLoaded() method
H A DIncrementalFileStorages.java123 if (systemDataLoader && !mInheritedStorage.isFullyLoaded()) { in IncrementalFileStorages()
/aosp12/system/incremental_delivery/incfs/util/
H A Dmap_ptr.cpp55 return isIncFsFd(fd) && isFullyLoaded(fd) != LoadingState::Full; in IsVerificationEnabled()
/aosp12/frameworks/base/services/incremental/
H A DBinderIncrementalService.h79 binder::Status isFullyLoaded(int32_t storageId, int32_t* _aidl_return) final;
H A DServiceWrappers.cpp216 return incfs::isFullyLoaded(control, path); in isFileFullyLoaded()
219 return incfs::isFullyLoaded(control, id); in isFileFullyLoaded()
H A DBinderIncrementalService.cpp267 binder::Status BinderIncrementalService::isFullyLoaded(int32_t storageId, int32_t* _aidl_return) { in isFullyLoaded() function in android::os::incremental::BinderIncrementalService