Home
last modified time | relevance | path

Searched refs:client (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/expo/packages/@expo/cli/src/run/ios/appleDevice/client/__tests__/
H A DDebugserverClient-test.ts14 return client;
23 const client = createClient(); constant
24 await client.setMaxPacketSize(1024);
31 const client = createClient(); constant
39 const client = createClient(); constant
40 await client.checkLaunchSuccess();
47 const client = createClient(); constant
55 const client = createClient(); constant
56 await client.continue();
63 const client = createClient(); constant
[all …]
H A DAFCClient-test.ts14 const client = new AFCClient(socket); constant
15 client['protocolClient'].sendMessage = jest.fn(async () => ({
34 const client = new AFCClient(socket); constant
35 client['protocolClient'].sendMessage = jest.fn(async () => ({
56 const client = new AFCClient(socket); constant
57 client['protocolClient'].sendMessage = jest.fn(async () => ({
64 client['openFile'](
83 const client = new AFCClient(socket); constant
91 client['openFile'](
103 const client = new AFCClient(socket); constant
[all …]
H A DUsbmuxdClient-test.ts12 const client = new UsbmuxdClient(socket); constant
13 const protocolClient = client['protocolClient'];
17 client.connect(
34 const client = new UsbmuxdClient(socket); constant
35 const protocolClient = client['protocolClient'];
39 client.connect(
/expo/packages/expo-web-browser/android/src/main/java/expo/modules/webbrowser/
H A DDeferredClientActionsQueue.kt8 private var client: T? = null variable in expo.modules.webbrowser.DeferredClientActionsQueue
10 fun setClient(client: T) { in setClient()
11 this.client = client in setClient()
15 fun hasClient(): Boolean = client != null in hasClient()
18 if (client != null) { in hasClient()
19 action.apply(client) in hasClient()
26 client = null in clear()
31 if (client == null) { in executeQueuedActions()
37 action.apply(client) in executeQueuedActions()
H A DCustomTabsConnectionHelper.kt23 clientActions.executeOrQueueAction { client: CustomTabsClient -> client.warmup(0) } in <lambda>() method
51 …override fun onCustomTabsServiceConnected(componentName: ComponentName, client: CustomTabsClient) { in <lambda>()
53 clientActions.setClient(client) in <lambda>()
69 clientActions.executeOrQueueAction { client: CustomTabsClient -> in <lambda>() method
70 sessionActions.setClient(client.newSession(null)) in <lambda>()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/webbrowser/
H A DDeferredClientActionsQueue.kt8 private var client: T? = null variable in abi47_0_0.expo.modules.webbrowser.DeferredClientActionsQueue
10 fun setClient(client: T) { in setClient()
11 this.client = client in setClient()
15 fun hasClient(): Boolean = client != null in hasClient()
18 if (client != null) { in hasClient()
19 action.apply(client) in hasClient()
26 client = null in clear()
31 if (client == null) { in executeQueuedActions()
37 action.apply(client) in executeQueuedActions()
H A DCustomTabsConnectionHelper.kt23 clientActions.executeOrQueueAction { client: CustomTabsClient -> client.warmup(0) } in <lambda>() method
51 …override fun onCustomTabsServiceConnected(componentName: ComponentName, client: CustomTabsClient) { in <lambda>()
53 clientActions.setClient(client) in <lambda>()
69 clientActions.executeOrQueueAction { client: CustomTabsClient -> in <lambda>() method
70 sessionActions.setClient(client.newSession(null)) in <lambda>()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/webbrowser/
H A DDeferredClientActionsQueue.kt8 private var client: T? = null variable in abi48_0_0.expo.modules.webbrowser.DeferredClientActionsQueue
10 fun setClient(client: T) { in setClient()
11 this.client = client in setClient()
15 fun hasClient(): Boolean = client != null in hasClient()
18 if (client != null) { in hasClient()
19 action.apply(client) in hasClient()
26 client = null in clear()
31 if (client == null) { in executeQueuedActions()
37 action.apply(client) in executeQueuedActions()
H A DCustomTabsConnectionHelper.kt23 clientActions.executeOrQueueAction { client: CustomTabsClient -> client.warmup(0) } in <lambda>() method
51 …override fun onCustomTabsServiceConnected(componentName: ComponentName, client: CustomTabsClient) { in <lambda>()
53 clientActions.setClient(client) in <lambda>()
69 clientActions.executeOrQueueAction { client: CustomTabsClient -> in <lambda>() method
70 sessionActions.setClient(client.newSession(null)) in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/webbrowser/
H A DDeferredClientActionsQueue.kt8 private var client: T? = null variable in abi49_0_0.expo.modules.webbrowser.DeferredClientActionsQueue
10 fun setClient(client: T) { in setClient()
11 this.client = client in setClient()
15 fun hasClient(): Boolean = client != null in hasClient()
18 if (client != null) { in hasClient()
19 action.apply(client) in hasClient()
26 client = null in clear()
31 if (client == null) { in executeQueuedActions()
37 action.apply(client) in executeQueuedActions()
H A DCustomTabsConnectionHelper.kt23 clientActions.executeOrQueueAction { client: CustomTabsClient -> client.warmup(0) } in <lambda>() method
51 …override fun onCustomTabsServiceConnected(componentName: ComponentName, client: CustomTabsClient) { in <lambda>()
53 clientActions.setClient(client) in <lambda>()
69 clientActions.executeOrQueueAction { client: CustomTabsClient -> in <lambda>() method
70 sessionActions.setClient(client.newSession(null)) in <lambda>()
/expo/packages/@expo/cli/src/start/server/
H A DReactDevToolsProxy.ts40 serverInstance?.clients.forEach(function each(client) {
41 if (client !== ws && client.readyState === WebSocket.OPEN) {
42 client.send(data, { binary: isBinary });
72 serverInstance?.clients.forEach(function each(client) {
73 if (client !== self && client.readyState === WebSocket.OPEN) {
74 client.close();
/expo/packages/@expo/metro-runtime/src/
H A DHMRClient.ts150 hmrClient = client;
160 client.on('connection-error', (e: Error) => {
178 if (client.isEnabled() && !isInitialUpdate) {
184 if (client.isEnabled() && !isInitialUpdate) {
190 client.on('update-done', () => {
194 client.on('error', (data: { type: string; message: string }) => {
198 client.close();
201 client.close();
205 if (client.isEnabled()) {
264 function registerBundleEntryPoints(client: HMRClientType | null) {
[all …]
/expo/packages/@expo/cli/src/utils/analytics/
H A DrudderstackClient.ts15 let client: RudderAnalytics | null = null; variable
26 client = null;
30 if (client) {
31 return client;
34 client = new RudderAnalytics(
45 process.on('SIGINT', () => client?.flush?.());
46 process.on('SIGTERM', () => client?.flush?.());
48 return client;
/expo/templates/expo-template-tv/android/app/src/debug/java/com/helloworld/
H A DReactNativeFlipper.java34 final FlipperClient client = AndroidFlipperClient.getInstance(context); in initializeFlipper() local
36 client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); in initializeFlipper()
37 client.addPlugin(new DatabasesFlipperPlugin(context)); in initializeFlipper()
38 client.addPlugin(new SharedPreferencesFlipperPlugin(context)); in initializeFlipper()
39 client.addPlugin(CrashReporterPlugin.getInstance()); in initializeFlipper()
49 client.addPlugin(networkFlipperPlugin); in initializeFlipper()
50 client.start(); in initializeFlipper()
65 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
71 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
/expo/templates/expo-template-bare-minimum/android/app/src/debug/java/com/helloworld/
H A DReactNativeFlipper.java34 final FlipperClient client = AndroidFlipperClient.getInstance(context); in initializeFlipper() local
36 client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); in initializeFlipper()
37 client.addPlugin(new DatabasesFlipperPlugin(context)); in initializeFlipper()
38 client.addPlugin(new SharedPreferencesFlipperPlugin(context)); in initializeFlipper()
39 client.addPlugin(CrashReporterPlugin.getInstance()); in initializeFlipper()
49 client.addPlugin(networkFlipperPlugin); in initializeFlipper()
50 client.start(); in initializeFlipper()
65 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
71 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
/expo/apps/bare-expo/android/app/src/debug/java/dev/expo/payments/
H A DReactNativeFlipper.java34 final FlipperClient client = AndroidFlipperClient.getInstance(context); in initializeFlipper() local
36 client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); in initializeFlipper()
37 client.addPlugin(new DatabasesFlipperPlugin(context)); in initializeFlipper()
38 client.addPlugin(new SharedPreferencesFlipperPlugin(context)); in initializeFlipper()
39 client.addPlugin(CrashReporterPlugin.getInstance()); in initializeFlipper()
49 client.addPlugin(networkFlipperPlugin); in initializeFlipper()
50 client.start(); in initializeFlipper()
65 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
71 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
/expo/apps/fabric-tester/android/app/src/debug/java/com/community/fabrictester/
H A DReactNativeFlipper.java34 final FlipperClient client = AndroidFlipperClient.getInstance(context); in initializeFlipper() local
36 client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); in initializeFlipper()
37 client.addPlugin(new DatabasesFlipperPlugin(context)); in initializeFlipper()
38 client.addPlugin(new SharedPreferencesFlipperPlugin(context)); in initializeFlipper()
39 client.addPlugin(CrashReporterPlugin.getInstance()); in initializeFlipper()
49 client.addPlugin(networkFlipperPlugin); in initializeFlipper()
50 client.start(); in initializeFlipper()
65 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
71 client.addPlugin(new FrescoFlipperPlugin()); in initializeFlipper()
/expo/.github/workflows/
H A Ddevelopment-client.yml9 # - .github/workflows/development-client.yml
14 # - .github/workflows/development-client.yml
46 working-directory: ../development-client-android-test
62 working-directory: ../development-client-android-test
63 run: yarn add file:../expo/packages/expo-dev-client
101 working-directory: ../development-client-ios-test
117 working-directory: ../development-client-ios-test
118 run: yarn add file:../expo/packages/expo-dev-client
120 working-directory: ../development-client-ios-test
123 working-directory: ../development-client-ios-test
[all …]
/expo/packages/@expo/metro-runtime/build/
H A DHMRClient.js135 hmrClient = client;
142 client.on('connection-error', (e) => {
161 client.on('update', ({ isInitialUpdate }) => {
167 client.on('update-done', () => {
170 client.on('error', (data) => {
173 client.close();
177 client.close();
182 if (client.isEnabled()) {
187 client.on('close', (closeEvent) => {
229 function registerBundleEntryPoints(client) { argument
[all …]
/expo/packages/create-expo-module/src/
H A Dtelemetry.ts18 let client: TelemetryClient | null = null; variable
23 if (!client) {
24 client = new TelemetryClient(
33 process.on('SIGINT', () => client?.flush?.());
34 process.on('SIGTERM', () => client?.flush?.());
37 return client;
/expo/packages/expo-font/src/__tests__/__snapshots__/
H A DFont-test.native.ts.snap.ios3 exports[`within Expo client loadAsync completes after loading a font 1`] = `
10 exports[`within Expo client loadAsync throws if downloading a font fails 1`] = `[Error: Failed to d…
12 exports[`within Expo client loadAsync throws if loading a downloaded font fails 1`] = `[Error: Inte…
14 exports[`within Expo client processFontFamily defaults missing fonts to the system font 1`] = `
20 exports[`within Expo client processFontFamily defaults still-loading fonts to the system font 1`] =…
26 exports[`within Expo client processFontFamily scopes loaded names of loaded fonts 1`] = `"ExpoFont-…
H A DFont-test.native.ts.snap.android3 exports[`within Expo client loadAsync completes after loading a font 1`] = `
10 exports[`within Expo client loadAsync throws if downloading a font fails 1`] = `[Error: Failed to d…
12 exports[`within Expo client loadAsync throws if loading a downloaded font fails 1`] = `[Error: Inte…
14 exports[`within Expo client processFontFamily defaults missing fonts to the system font 1`] = `
20 exports[`within Expo client processFontFamily defaults still-loading fonts to the system font 1`] =…
26 exports[`within Expo client processFontFamily scopes loaded names of loaded fonts 1`] = `"ExpoFont-…
/expo/packages/create-expo-module/build/
H A Dtelemetry.js19 let client = null; variable
23 if (!client) {
24client = new rudder_sdk_node_1.default(EXPO_SANDBOX ? '24TKICqYKilXM480mA7ktgVDdea' : '24TKR7CQAaG…
29 process.on('SIGINT', () => client?.flush?.());
30 process.on('SIGTERM', () => client?.flush?.());
32 return client;
/expo/docs/pages/eas-update/
H A Dexpo-dev-client.mdx2 title: Use expo-dev-client with EAS Update
3 sidebar_title: Use expo-dev-client
4 description: Learn how to use the expo-dev-client library to preview a published EAS Update inside …
14client`](/develop/development-builds/introduction/) library allows launching different versions of…
37 alt="Extensions tab in the Expo dev client."
38 src="/static/images/dev-client/extensions-panel.png"
45 exp+[project-slug]://expo-development-client/?url=[https://u.expo.dev/project-id]?channel-name=[cha…
48 exp+form-duo://expo-development-client/?url=https://u.expo.dev/675cb1f0-fa3c-11e8-ac99-6374d9643cb2…
55 - `://expo-development-client/`: necessary for the deep link to work with the `expo-dev-client` lib…
73 description="See a working example on using expo-dev-client with EAS Update."
[all …]

12345678910>>...16