Searched refs:isFullyLoaded (Results 1 – 10 of 10) sorted by relevance
/aosp12/system/incremental_delivery/incfs/include/ |
H A D | incfs.h | 276 LoadingState isFullyLoaded(int fd); 277 LoadingState isFullyLoaded(const Control& control, std::string_view path); 278 LoadingState isFullyLoaded(const Control& control, FileId fileId);
|
H A D | incfs_inline.h | 351 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 D | incfs_test.cpp | 775 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 D | IncrementalStorage.java | 334 public boolean isFullyLoaded() throws IOException { in isFullyLoaded() method in IncrementalStorage 336 final int res = mService.isFullyLoaded(mId); in isFullyLoaded()
|
H A D | IIncrementalService.aidl | 121 int isFullyLoaded(int storageId); in isFullyLoaded() method
|
H A D | IncrementalFileStorages.java | 123 if (systemDataLoader && !mInheritedStorage.isFullyLoaded()) { in IncrementalFileStorages()
|
/aosp12/system/incremental_delivery/incfs/util/ |
H A D | map_ptr.cpp | 55 return isIncFsFd(fd) && isFullyLoaded(fd) != LoadingState::Full; in IsVerificationEnabled()
|
/aosp12/frameworks/base/services/incremental/ |
H A D | BinderIncrementalService.h | 79 binder::Status isFullyLoaded(int32_t storageId, int32_t* _aidl_return) final;
|
H A D | ServiceWrappers.cpp | 216 return incfs::isFullyLoaded(control, path); in isFileFullyLoaded() 219 return incfs::isFullyLoaded(control, id); in isFileFullyLoaded()
|
H A D | BinderIncrementalService.cpp | 267 binder::Status BinderIncrementalService::isFullyLoaded(int32_t storageId, int32_t* _aidl_return) { in isFullyLoaded() function in android::os::incremental::BinderIncrementalService
|