| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/AppLoader/ |
| H A D | UpdateResponse.swift | 88 let manifestUpdateResponsePart: ManifestUpdateResponsePart? variable 93 manifestUpdateResponsePart: ManifestUpdateResponsePart?, 97 self.manifestUpdateResponsePart = manifestUpdateResponsePart
|
| H A D | AppLoader.swift | 111 guard let updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest else { in startLoading() 318 …toUpdateWithId: self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateManifest.… in finish() 341 …toUpdateWithId: self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateManifest.… in finish() 351 …base.markUpdateFinished(self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateM… in finish()
|
| H A D | FileDownloader.swift | 23 private typealias ParseManifestSuccessBlock = (_ manifestUpdateResponsePart: ManifestUpdateResponse… 372 manifestUpdateResponsePart: nil, 436 ) { manifestUpdateResponsePart in 439 manifestUpdateResponsePart: manifestUpdateResponsePart, 580 manifestUpdateResponsePart: parseManifestResponse, 608 ) { manifestUpdateResponsePart in 609 parseManifestResponse = manifestUpdateResponsePart
|
| H A D | AppLoaderTask.swift | 364 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 426 let updateBeingLaunched = updateResponse?.manifestUpdateResponsePart?.updateManifest in handleRemoteUpdateResponseLoaded() 478 let update = updateResponse?.manifestUpdateResponsePart?.updateManifest in processRollBackToEmbeddedDirective()
|
| H A D | EmbeddedAppLoader.swift | 126 manifestUpdateResponsePart: ManifestUpdateResponsePart(updateManifest: embeddedManifest),
|
| /expo/packages/expo-updates/ios/EXUpdates/AppLoader/ |
| H A D | UpdateResponse.swift | 93 public let manifestUpdateResponsePart: ManifestUpdateResponsePart? variable 98 manifestUpdateResponsePart: ManifestUpdateResponsePart?, 102 self.manifestUpdateResponsePart = manifestUpdateResponsePart
|
| H A D | AppLoader.swift | 111 guard let updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest else { in startLoading() 318 …toUpdateWithId: self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateManifest.… in finish() 341 …toUpdateWithId: self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateManifest.… in finish() 351 …base.markUpdateFinished(self.updateResponseContainingManifest!.manifestUpdateResponsePart!.updateM… in finish()
|
| H A D | RemoteAppLoader.swift | 141 let updateBeingLaunched = updateResponse?.manifestUpdateResponsePart?.updateManifest 215 let update = updateResponse?.manifestUpdateResponsePart?.updateManifest
|
| H A D | FileDownloader.swift | 23 private typealias ParseManifestSuccessBlock = (_ manifestUpdateResponsePart: ManifestUpdateResponse… 372 manifestUpdateResponsePart: nil, 436 ) { manifestUpdateResponsePart in 439 manifestUpdateResponsePart: manifestUpdateResponsePart, 580 manifestUpdateResponsePart: parseManifestResponse, 608 ) { manifestUpdateResponsePart in 609 parseManifestResponse = manifestUpdateResponsePart
|
| H A D | EmbeddedAppLoader.swift | 126 manifestUpdateResponsePart: ManifestUpdateResponsePart(updateManifest: embeddedManifest),
|
| /expo/packages/expo-updates/ios/Tests/ |
| H A D | FileDownloaderManifestParsingSpec.swift | 44 expect(resultUpdateResponse?.manifestUpdateResponsePart).notTo(beNil()) in spec() 45 …expect(resultUpdateResponse?.manifestUpdateResponsePart?.updateManifest.manifest.isVerified()) == … in spec() 82 expect(resultUpdateResponse?.manifestUpdateResponsePart).notTo(beNil()) in spec() 83 …expect(resultUpdateResponse?.manifestUpdateResponsePart?.updateManifest.manifest.isVerified()) == … in spec() 124 expect(resultUpdateResponse?.manifestUpdateResponsePart).to(beNil()) in spec() 203 expect(resultUpdateResponse?.manifestUpdateResponsePart).to(beNil()) in spec() 235 expect(resultUpdateResponse?.manifestUpdateResponsePart).to(beNil()) in spec() 267 expect(resultUpdateResponse?.manifestUpdateResponsePart).to(beNil()) in spec() 297 expect(resultUpdateResponse?.manifestUpdateResponsePart).to(beNil()) in spec() 359 expect(resultUpdateResponse?.manifestUpdateResponsePart).notTo(beNil()) in spec() [all …]
|
| /expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/loader/ |
| H A D | FileDownloaderManifestParsingTest.kt | 56 resultUpdateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in testManifestParsing_JSONBody() 130 Assert.assertNotNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_MultipartBody() 188 Assert.assertNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_MultipartBodyOnlyDirective() 238 resultUpdateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in testManifestParsing_MultipartBodyOnlyDirective_v0CompatibilityMode() 296 Assert.assertNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_MultipartBodyNoRelevantParts() 339 Assert.assertNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_MultipartBodyEmpty() 378 Assert.assertNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_NullBodyResponseProtocol1() 417 Assert.assertNull(resultUpdateResponse!!.manifestUpdateResponsePart) in testManifestParsing_204ResponseProtocol1() 449 resultUpdateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in testManifestParsing_204ResponseNoProtocol() 500 resultUpdateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in testManifestParsing_JSONBodySigned() [all …]
|
| H A D | RemoteLoaderTest.kt | 71 manifestUpdateResponsePart = UpdateResponsePart.ManifestUpdateResponsePart(manifest), in setup() 265 manifestUpdateResponsePart = UpdateResponsePart.ManifestUpdateResponsePart(manifest), in testRemoteLoader_DevelopmentModeManifest() 290 manifestUpdateResponsePart = null, in testRemoteLoader_RollBackDirective()
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/ |
| H A D | FileDownloader.kt | 119 manifestUpdateResponsePart = null, in <lambda>() 169 …override fun onSuccess(manifestUpdateResponsePart: UpdateResponsePart.ManifestUpdateResponsePart) { in <lambda>() 173 manifestUpdateResponsePart = manifestUpdateResponsePart, in <lambda>() 300 manifestUpdateResponsePart = parseManifestResponse, in <lambda>() 342 …override fun onSuccess(manifestUpdateResponsePart: UpdateResponsePart.ManifestUpdateResponsePart) { in <lambda>() 343 parseManifestResponse = manifestUpdateResponsePart in <lambda>() 416 fun onSuccess(manifestUpdateResponsePart: UpdateResponsePart.ManifestUpdateResponsePart) in <lambda>()
|
| H A D | RemoteUpdate.kt | 37 val manifestUpdateResponsePart: UpdateResponsePart.ManifestUpdateResponsePart?, constant in UpdateResponse
|
| H A D | EmbeddedLoader.kt | 61 … manifestUpdateResponsePart = UpdateResponsePart.ManifestUpdateResponsePart(updateManifest), in loadRemoteUpdate()
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/ |
| H A D | UpdatesUtils.swift | 98 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 156 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 190 if let update = updateResponse?.manifestUpdateResponsePart?.updateManifest {
|
| H A D | DevLauncherController.swift | 99 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 108 let update = updateResponse.manifestUpdateResponsePart?.updateManifest else {
|
| /expo/packages/expo-updates/ios/EXUpdates/ |
| H A D | DevLauncherController.swift | 99 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 108 let update = updateResponse.manifestUpdateResponsePart?.updateManifest else {
|
| H A D | UpdatesUtils.swift | 147 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else { 232 guard let update = updateResponse.manifestUpdateResponsePart?.updateManifest else {
|
| /expo/ios/Client/ |
| H A D | HomeAppLoader.swift | 73 manifestUpdateResponsePart: ManifestUpdateResponsePart(updateManifest: update),
|
| H A D | HomeAppLoaderTask.swift | 51 … self.launchUpdate(remoteUpdate?.manifestUpdateResponsePart?.updateManifest, error: remoteError) in homeAppLoaderTask()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/updates/ |
| H A D | UpdatesModule.kt | 161 val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in <lambda>() 242 …val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest ?: return Loader.On… in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/updates/ |
| H A D | UpdatesModule.kt | 162 val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in <lambda>() 243 …val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest ?: return Loader.On… in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/ |
| H A D | UpdatesModule.kt | 169 val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest in <lambda>() 296 …val updateManifest = updateResponse.manifestUpdateResponsePart?.updateManifest ?: return Loader.On… in <lambda>()
|