Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 239) sorted by relevance

12345678910

/expo/packages/expo-updates/src/statemachine/__tests__/
H A DUpdatesStateMachine-test.node.ts17 machine.send(event);
45 machine.send(checkEvent);
46 machine.send(checkCompleteEvent);
62 machine.send(downloadEvent);
91 machine.send(downloadEvent);
92 machine.send(downloadCompleteEvent);
120 machine.send(checkEvent);
163 machine.send(downloadEvent);
164 machine.send(downloadCompleteEvent);
165 machine.send(checkEvent);
[all …]
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/handlers/__tests__/
H A DNetworkResponse.test.ts5 const debuggerSocket = { send: jest.fn() };
32 expect(debuggerSocket.send).toBeCalledWith(
45 const debuggerSocket = { send: jest.fn() };
59 expect(debuggerSocket.send).not.toBeCalled();
H A DPageReload.test.ts6 const debuggerSocket = { send: jest.fn() };
20 expect(debuggerSocket.send).toBeCalledWith(JSON.stringify({ id: 420 }));
H A DVscodeDebuggerGetPossibleBreakpoints.test.ts27 socket: { send: jest.fn() },
41 expect(debuggerInfo.socket.send).toBeCalledWith(
/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DServeStaticMiddleware-test.ts2 import send from 'send';
36 expect(send).not.toBeCalled();
55 expect(send).toBeCalledWith(
81 expect(send).not.toBeCalled();
/expo/apps/bare-expo/relapse/
H A Dclient.js35 export function send(message) { function
46 socket.send(json);
55 send({
H A Dserver.js56 export function send(message) { function
60 state.ws.send(JSON.stringify(message));
/expo/apps/bare-expo/e2e/setup/
H A DsetupSockets.js3 import { startAsync, send } from '../../relapse/server';
27 send({ globals: Object.keys(API) });
/expo/home/screens/DeleteAccountScreen/
H A DSMSDevice.tsx17 const [buttonText, setButtonText] = useState<'Re-send Code' | 'Send Code'>(
18 sentCode ? 'Re-send Code' : 'Send Code'
30 setButtonText('Re-send Code');
/expo/packages/expo-updates/e2e/fixtures/project_files/e2e/tests/utils/
H A Dserver.ts67 send: (arg0: string) => void;
75 res.send('Received request');
87 send: (arg0: string) => void;
95 res.send('Received request');
143 res.status(404).send('No update available');
145 res.status(404).send('No update available');
/expo/packages/@expo/cli/src/start/server/middleware/
H A DServeStaticMiddleware.ts2 import send from 'send';
40 const stream = send(req, pathname, opts);
/expo/packages/@expo/metro-runtime/src/
H A DHMRClient.ts21 send: (msg: string) => void;
75 hmrClient.send(JSON.stringify({ type: 'log-opt-in' }));
119 hmrClient.send(
272 client?.send(
/expo/docs/pages/versions/unversioned/sdk/
H A Dmail-composer.mdx3 description: A library that provides functionality to compose and send emails with the system's spe…
14 **`expo-mail-composer`** allows you to compose and send emails quickly and easily using the OS UI. …
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dmail-composer.mdx3 description: A library that provides functionality to compose and send emails with the system's spe…
14 **`expo-mail-composer`** allows you to compose and send emails quickly and easily using the OS UI. …
/expo/docs/pages/versions/v49.0.0/sdk/
H A Dmail-composer.mdx3 description: A library that provides functionality to compose and send emails with the system's spe…
14 **`expo-mail-composer`** allows you to compose and send emails quickly and easily using the OS UI. …
/expo/docs/pages/versions/v48.0.0/sdk/
H A Dmail-composer.mdx3 description: A library that provides functionality to compose and send emails with the system's spe…
14 **`expo-mail-composer`** allows you to compose and send emails quickly and easily using the OS UI. …
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dmail-composer.mdx3 description: A library that provides functionality to compose and send emails with the system's spe…
14 **`expo-mail-composer`** allows you to compose and send emails quickly and easily using the OS UI. …
/expo/
H A DSECURITY.md5 Instead of opening a GitHub issue for security vulnerabilities, send an email to our secure inbox: …
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/DevSupport/
H A DABI49_0_0RCTPackagerClient.m44 [_socket send:message];
60 [_socket send:message];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/DevSupport/
H A DABI47_0_0RCTPackagerClient.m44 [_socket send:message];
60 [_socket send:message];
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/DevSupport/
H A DABI48_0_0RCTPackagerClient.m44 [_socket send:message];
60 [_socket send:message];
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/handlers/
H A DPageReload.ts13 socket.send(JSON.stringify({ id: message.id }));
H A DVscodeDebuggerGetPossibleBreakpoints.ts20 socket.send(JSON.stringify(response));
/expo/packages/eslint-config-universe/__tests__/fixtures/
H A Dweb-native-00.js25 new XMLHttpRequest().send();
/expo/packages/expo-modules-core/android/src/main/java/expo/modules/core/logging/
H A DPersistentFileLogSerialDispatchQueue.kt15 fun add(block: PersistentFileLogSerialDispatchQueueBlock) = runBlocking { channel.send(block) } in add()

12345678910