Home
last modified time | relevance | path

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

/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/
H A DLoader.kt221 private enum class AssetLoadResult { class in expo.modules.updates.loader.Loader
230 handleAssetDownloadCompleted(assetEntity, AssetLoadResult.SKIPPED) in downloadAllAssets()
250 handleAssetDownloadCompleted(assetEntity, AssetLoadResult.ALREADY_EXISTS) in downloadAllAssets()
262 handleAssetDownloadCompleted(assetEntity, AssetLoadResult.ERRORED) in downloadAllAssets()
268 if (isNew) AssetLoadResult.FINISHED else AssetLoadResult.ALREADY_EXISTS in downloadAllAssets()
277 private fun handleAssetDownloadCompleted(assetEntity: AssetEntity, result: AssetLoadResult) { in handleAssetDownloadCompleted()
279 AssetLoadResult.FINISHED -> finishedAssetList.add(assetEntity) in handleAssetDownloadCompleted()
280 AssetLoadResult.ALREADY_EXISTS -> existingAssetList.add(assetEntity) in handleAssetDownloadCompleted()
281 AssetLoadResult.ERRORED -> erroredAssetList.add(assetEntity) in handleAssetDownloadCompleted()
282 AssetLoadResult.SKIPPED -> skippedAssetList.add(assetEntity) in handleAssetDownloadCompleted()