diff options
| author | 2020-08-27 20:07:34 +0000 | |
|---|---|---|
| committer | 2020-08-27 20:07:34 +0000 | |
| commit | 9f36df99486f1af37067df47db336a2d6bddbf45 (patch) | |
| tree | 898e37c90a61a6dd2eb19ba3aa518d434026bd23 /services/incremental/BinderIncrementalService.cpp | |
| parent | 284c825cfb0c94032f709f12f42724ff79832560 (diff) | |
| parent | bc0a7e6cbf4a56c1451e8e03040974b1cc0a782d (diff) | |
Merge "Wait for APK to be fully downloaded for full APK digests."
Diffstat (limited to 'services/incremental/BinderIncrementalService.cpp')
| -rw-r--r-- | services/incremental/BinderIncrementalService.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/services/incremental/BinderIncrementalService.cpp b/services/incremental/BinderIncrementalService.cpp index 41945a276fde..87ae4d719d11 100644 --- a/services/incremental/BinderIncrementalService.cpp +++ b/services/incremental/BinderIncrementalService.cpp @@ -237,6 +237,13 @@ binder::Status BinderIncrementalService::unlink(int32_t storageId, const std::st return ok(); } +binder::Status BinderIncrementalService::isFileFullyLoaded(int32_t storageId, + const std::string& path, + int32_t* _aidl_return) { + *_aidl_return = mImpl.isFileFullyLoaded(storageId, path); + return ok(); +} + binder::Status BinderIncrementalService::getLoadingProgress(int32_t storageId, float* _aidl_return) { *_aidl_return = mImpl.getLoadingProgress(storageId); |