Home
last modified time | relevance | path

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

/expo/ios/Exponent/Kernel/Services/
H A DEXCachedResourceManager.m10 cachePath:(NSString * _Nullable)cachePath
15 cachePath:cachePath];
H A DEXCachedResourceManager.h14 cachePath:(NSString * _Nullable)cachePath;
26 cachePath:(NSString * _Nullable)cachePath;
/expo/ios/Exponent/Kernel/AppLoader/CachedResource/
H A DEXJavaScriptResource.h12 cachePath:(NSString * _Nullable)cachePath NS_UNAVAILABLE;
H A DEXManifestResource.h14 cachePath:(NSString * _Nullable)cachePath NS_UNAVAILABLE;
H A DEXCachedResource.h22 cachePath:(NSString * _Nullable)cachePath;
H A DEXCachedResource.m22 @property (nonatomic, strong) NSString *cachePath; property
30 …e:(NSString *)resourceType remoteUrl:(nonnull NSURL *)url cachePath:(NSString * _Nullable)cachePath
37 _cachePath = (cachePath) ? cachePath : [self _defaultCachePath];
H A DEXManifestResource.m48 …ResourceName:resourceName resourceType:@"json" remoteUrl:url cachePath:[[self class] cachePath]]) {
92 return [[[self class] cachePath] stringByAppendingPathComponent:versionedResourceFilename];
107 NSString *cachePath = [self resourceCachePath];
111 NSData *cachedData = [NSData dataWithContentsOfFile:cachePath];
184 + (NSString *)cachePath
H A DEXJavaScriptResource.m20 …if (self = [super initWithResourceName:bundleName resourceType:@"bundle" remoteUrl:url cachePath:[…
/expo/packages/create-expo/src/utils/
H A Dnpm.ts263 const cachePath = getTemporaryCacheFilePath(); constant
265 debug(`Looking for NPM tarball (id: ${npmName}, cache: ${cachePath})`);
267 await fs.promises.mkdir(cachePath, { recursive: true });
269 const info = await getNpmInfoAsync(npmName, cachePath);
271 const cacheFilename = path.join(cachePath, info.filename);
278 debug(`Downloading tarball for ${npmName} to ${cachePath}...`);
279 await npmPackAsync(npmName, cachePath);