Searched refs:AssetLoadResult (Results 1 – 1 of 1) sorted by relevance
221 private enum class AssetLoadResult { class in expo.modules.updates.loader.Loader230 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()