| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI48_0_0RAMBundleRegistry.cpp | 39 uint32_t bundleId, in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 45 uint32_t bundleId, in getModule() argument 47 if (m_bundles.find(bundleId) == m_bundles.end()) { in getModule() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule() 63 auto module = getBundle(bundleId)->getModule(moduleId); in getModule() 64 if (bundleId == MAIN_BUNDLE_ID) { in getModule() 68 folly::to<std::string>("seg-", bundleId, '_', std::move(module.name)), in getModule() 73 JSModulesUnbundle *RAMBundleRegistry::getBundle(uint32_t bundleId) const { in getBundle() [all …]
|
| H A D | ABI48_0_0JSExecutor.cpp | 18 uint32_t bundleId, in getSyntheticBundlePath() argument 20 if (bundleId == RAMBundleRegistry::MAIN_BUNDLE_ID) { in getSyntheticBundlePath() 23 return folly::to<std::string>("seg-", bundleId, ".js"); in getSyntheticBundlePath()
|
| H A D | ABI48_0_0RAMBundleRegistry.h | 43 void registerBundle(uint32_t bundleId, std::string bundlePath); 44 JSModulesUnbundle::Module getModule(uint32_t bundleId, uint32_t moduleId); 48 JSModulesUnbundle *getBundle(uint32_t bundleId) const;
|
| H A D | ABI48_0_0JSExecutor.h | 84 uint32_t bundleId, 139 uint32_t bundleId,
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI47_0_0RAMBundleRegistry.cpp | 39 uint32_t bundleId, in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 45 uint32_t bundleId, in getModule() argument 47 if (m_bundles.find(bundleId) == m_bundles.end()) { in getModule() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule() 63 auto module = getBundle(bundleId)->getModule(moduleId); in getModule() 64 if (bundleId == MAIN_BUNDLE_ID) { in getModule() 68 folly::to<std::string>("seg-", bundleId, '_', std::move(module.name)), in getModule() 73 JSModulesUnbundle *RAMBundleRegistry::getBundle(uint32_t bundleId) const { in getBundle() [all …]
|
| H A D | ABI47_0_0JSExecutor.cpp | 18 uint32_t bundleId, in getSyntheticBundlePath() argument 20 if (bundleId == RAMBundleRegistry::MAIN_BUNDLE_ID) { in getSyntheticBundlePath() 23 return folly::to<std::string>("seg-", bundleId, ".js"); in getSyntheticBundlePath()
|
| H A D | ABI47_0_0RAMBundleRegistry.h | 43 void registerBundle(uint32_t bundleId, std::string bundlePath); 44 JSModulesUnbundle::Module getModule(uint32_t bundleId, uint32_t moduleId); 48 JSModulesUnbundle *getBundle(uint32_t bundleId) const;
|
| H A D | ABI47_0_0JSExecutor.h | 84 uint32_t bundleId, 140 uint32_t bundleId,
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI49_0_0RAMBundleRegistry.cpp | 39 uint32_t bundleId, in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 45 uint32_t bundleId, in getModule() argument 47 if (m_bundles.find(bundleId) == m_bundles.end()) { in getModule() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule() 63 auto module = getBundle(bundleId)->getModule(moduleId); in getModule() 64 if (bundleId == MAIN_BUNDLE_ID) { in getModule() 68 folly::to<std::string>("seg-", bundleId, '_', std::move(module.name)), in getModule() 73 JSModulesUnbundle *RAMBundleRegistry::getBundle(uint32_t bundleId) const { in getBundle() [all …]
|
| H A D | ABI49_0_0JSExecutor.cpp | 20 uint32_t bundleId, in getSyntheticBundlePath() argument 22 if (bundleId == RAMBundleRegistry::MAIN_BUNDLE_ID) { in getSyntheticBundlePath() 25 return folly::to<std::string>("seg-", bundleId, ".js"); in getSyntheticBundlePath()
|
| H A D | ABI49_0_0RAMBundleRegistry.h | 43 void registerBundle(uint32_t bundleId, std::string bundlePath); 44 JSModulesUnbundle::Module getModule(uint32_t bundleId, uint32_t moduleId); 48 JSModulesUnbundle *getBundle(uint32_t bundleId) const;
|
| H A D | ABI49_0_0JSExecutor.h | 84 uint32_t bundleId, 139 uint32_t bundleId,
|
| /expo/packages/@expo/config-plugins/src/ios/__tests__/ |
| H A D | BundleIdentifier-test.ts | 44 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { targetName: 'testproject' }); constant 45 expect(bundleId).toBeNull(); 56 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { targetName: 'HelloWorld' }); constant 57 expect(bundleId).toBe('org.name.HelloWorld'); 76 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { constant 79 expect(bundleId).toBe('com.swmansion.dominik.multitarget'); 97 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { constant 101 expect(bundleId).toBe('com.swmansion.dominik.multitarget.debug');
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | validateApplicationId.ts | 126 export async function getBundleIdWarningInternalAsync(bundleId: string): Promise<string | null> { 134 … `Couldn't connect to iTunes Store to check bundle ID ${bundleId}. itunes.apple.com may be down.` 142 debug(`Checking iOS bundle ID '${bundleId}' at: ${url}`); 147 return formatInUseWarning(firstApp.trackName, firstApp.sellerName, bundleId); 150 debug(`Error checking bundle ID ${bundleId}: ${error.message}`);
|
| /expo/packages/@expo/cli/src/start/platforms/ios/ |
| H A D | AppleAppIdResolver.ts | 29 const bundleId = IOSConfig.BundleIdentifier.getBundleIdentifierFromPbxproj(this.projectRoot); constant 30 if (bundleId) { 31 return bundleId;
|
| /expo/packages/@expo/cli/src/run/ios/appleDevice/ |
| H A D | AppleDevice.ts | 66 bundleId, 76 bundleId: string; 97 bundleId, 102 CFBundleIdentifier: bundleId, 119 [bundleId]: appInfo, constant 120 } = await installer.lookupApp([bundleId]); 143 Log.warn(`App "${bundleId}" installed but couldn't be launched. Open on device manually.`);
|
| H A D | installOnDeviceAsync.ts | 14 export function getAppDeltaDirectory(bundleId: string): string { 17 const deltaFolder = path.join(os.tmpdir(), 'ios', 'app-delta', bundleId); 41 bundleId: bundleIdentifier,
|
| /expo/packages/@expo/cli/src/run/ios/appleDevice/client/ |
| H A D | InstallationProxyClient.ts | 154 bundleId: string, 161 debug(`installApp, packagePath: ${packagePath}, bundleId: ${bundleId}`); 168 CFBundleIdentifier: bundleId,
|
| /expo/packages/expo-application/src/ |
| H A D | ExpoApplication.web.ts | 8 get bundleId(): null {
|
| /expo/packages/@expo/config-plugins/src/ios/ |
| H A D | BundleIdentifier.ts | 22 const bundleId = bundleIdentifier ?? config.ios?.bundleIdentifier; 24 bundleId, 27 await setBundleIdentifierForPbxproj(config.modRequest.projectRoot, bundleId!);
|
| /expo/packages/expo-application/build/ |
| H A D | ExpoApplication.web.js | 8 get bundleId() {
|
| H A D | ExpoApplication.web.d.ts | 4 readonly bundleId: null; constant
|
| /expo/tools/src/prebuilds/ |
| H A D | XcodeGen.ts | 70 const bundleId = podNameToBundleId(podspec.name); constant 110 CFBundleIdentifier: bundleId, 126 PRODUCT_BUNDLE_IDENTIFIER: bundleId,
|
| /expo/packages/@expo/config-plugins/build/ios/ |
| H A D | BundleIdentifier.js | 83 …const bundleId = bundleIdentifier !== null && bundleIdentifier !== void 0 ? bundleIdentifier : (_c… constant 84 …(0, _assert().default)(bundleId, '`bundleIdentifier` must be defined in the app config (`expo.ios.… 85 await setBundleIdentifierForPbxproj(config.modRequest.projectRoot, bundleId);
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/jsiexecutor/jsireact/ |
| H A D | ABI49_0_0JSIExecutor.cpp | 185 uint32_t bundleId, in registerBundle() argument 187 const auto tag = folly::to<std::string>(bundleId); in registerBundle() 191 bundleRegistry_->registerBundle(bundleId, bundlePath); in registerBundle() 200 JSExecutor::getSyntheticBundlePath(bundleId, bundlePath)); in registerBundle() 459 uint32_t bundleId = count == 2 ? folly::to<uint32_t>(args[1].getNumber()) : 0; in nativeRequire() local 460 auto module = bundleRegistry_->getModule(bundleId, moduleId); in nativeRequire()
|