Home
last modified time | relevance | path

Searched refs:sendMessage (Results 1 – 25 of 42) sorted by relevance

12

/expo/packages/@expo/cli/src/run/ios/appleDevice/client/__tests__/
H A DAFCClient-test.ts15 client['protocolClient'].sendMessage = jest.fn(async () => ({
24 expect(client['protocolClient'].sendMessage).toHaveBeenCalledWith({
35 client['protocolClient'].sendMessage = jest.fn(async () => ({
46 expect(client['protocolClient'].sendMessage).toHaveBeenCalledWith({
57 client['protocolClient'].sendMessage = jest.fn(async () => ({
69 expect(client['protocolClient'].sendMessage).toHaveBeenCalledWith({
84 client['protocolClient'].sendMessage = jest.fn(async () => ({
104 client['protocolClient'].sendMessage = jest.fn(async () => ({
116 expect(client['protocolClient'].sendMessage).toHaveBeenCalledWith({
127 client['protocolClient'].sendMessage = jest.fn(async () => ({
[all …]
H A DUsbmuxdClient-test.ts14 protocolClient.sendMessage = jest.fn(async () => ({ MessageType: 'Result', Number: 0 }));
24 expect(protocolClient.sendMessage).toHaveBeenCalledWith({
36 protocolClient.sendMessage = jest.fn(async () => ({ MessageType: 'Fail' }));
H A DDebugserverClient-test.ts13 client['protocolClient'].sendMessage = jest.fn(() => returnValue);
18 expect(client['protocolClient'].sendMessage).toHaveBeenCalledWith(msg);
/expo/packages/@expo/cli/src/run/ios/appleDevice/client/
H A DLockdowndClient.ts106 const resp = await this.protocolClient.sendMessage({
121 const resp = await this.protocolClient.sendMessage({
151 const resp = await this.protocolClient.sendMessage({ Request: 'GetValue' });
163 const resp = await this.protocolClient.sendMessage({
178 const resp = await this.protocolClient.sendMessage({
H A DMobileImageMounterClient.ts52 const resp = await this.protocolClient.sendMessage({
68 return this.protocolClient.sendMessage(
94 return this.protocolClient.sendMessage<MIMLookupResponse>({
H A DAFCClient.ts36 const response = await this.protocolClient.sendMessage({
59 const response = await this.protocolClient.sendMessage({
78 const response = await this.protocolClient.sendMessage({
99 const response = await this.protocolClient.sendMessage({
129 const response = await this.protocolClient.sendMessage({
H A DDebugserverClient.ts52 return this.protocolClient.sendMessage(msg, (resp: string, resolve: any) => {
78 const resp = await this.protocolClient.sendMessage(msg);
H A DUsbmuxdClient.ts126 const response = await this.protocolClient.sendMessage({
148 const resp = await this.protocolClient.sendMessage({
183 const resp = await this.protocolClient.sendMessage({
H A DInstallationProxyClient.ts137 let resp = await this.protocolClient.sendMessage({
163 return this.protocolClient.sendMessage(
/expo/packages/@expo/cli/__mocks__/
H A Dwebpack-dev-server.ts3 sendMessage: jest.fn(),
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecovery.kt54 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.REMOTE_LOAD_STATUS_CHAN… in <lambda>()
59 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.EXCEPTION_ENCOUNTERED, … in <lambda>()
63 handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.CONTENT_APPEARED)) in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecovery.kt54 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.REMOTE_LOAD_STATUS_CHAN… in <lambda>()
59 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.EXCEPTION_ENCOUNTERED, … in <lambda>()
63 handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.CONTENT_APPEARED)) in <lambda>()
/expo/packages/@expo/cli/src/run/ios/appleDevice/protocol/
H A DAbstractProtocol.ts118 sendMessage<ResponseType = any>(msg: MessageType): Promise<ResponseType>; method in ProtocolClient
119 sendMessage<CallbackType = void, ResponseType = any>(
123 sendMessage<CallbackType = void, ResponseType = any>(
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/errorrecovery/
H A DErrorRecovery.kt54 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.REMOTE_LOAD_STATUS_CHAN… in <lambda>()
59 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.EXCEPTION_ENCOUNTERED, … in <lambda>()
63 handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.CONTENT_APPEARED)) in <lambda>()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecovery.kt54 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.REMOTE_LOAD_STATUS_CHAN… in <lambda>()
59 …handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.EXCEPTION_ENCOUNTERED, … in <lambda>()
63 handler.sendMessage(handler.obtainMessage(ErrorRecoveryHandler.MessageType.CONTENT_APPEARED)) in <lambda>()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI48_0_0ConnectionDemux.cpp31 void sendMessage(std::string message) override;
48 void LocalConnection::sendMessage(std::string str) { in sendMessage() function in ABI48_0_0facebook::ABI48_0_0hermes::inspector::chrome::__anon93908e3f0111::LocalConnection
49 conn_->sendMessage(std::move(str)); in sendMessage()
H A DABI48_0_0Connection.h55 void sendMessage(std::string str);
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI47_0_0ConnectionDemux.cpp32 void sendMessage(std::string message) override;
49 void LocalConnection::sendMessage(std::string str) { in sendMessage() function in ABI47_0_0facebook::ABI47_0_0hermes::inspector::chrome::__anon36106d3d0111::LocalConnection
50 conn_->sendMessage(std::move(str)); in sendMessage()
H A DABI47_0_0Connection.h55 void sendMessage(std::string str);
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI49_0_0ConnectionDemux.cpp31 void sendMessage(std::string message) override;
48 void LocalConnection::sendMessage(std::string str) { in sendMessage() function in ABI49_0_0facebook::ABI49_0_0hermes::inspector::chrome::__anonf110af410111::LocalConnection
49 conn_->sendMessage(std::move(str)); in sendMessage()
H A DABI49_0_0Connection.h55 void sendMessage(std::string str);
/expo/packages/@expo/cli/src/start/server/webpack/__tests__/
H A DWebpackBundlerDevServer-test.ts71 sendMessage: expect.any(Function),
109 devServer.getInstance().server.sendMessage
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Inspector/
H A DABI47_0_0RCTInspector.h16 - (void)sendMessage:(NSString *)message;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Inspector/
H A DABI49_0_0RCTInspector.h16 - (void)sendMessage:(NSString *)message;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Inspector/
H A DABI48_0_0RCTInspector.h16 - (void)sendMessage:(NSString *)message;

12