Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 25 of 90) sorted by relevance

1234

/expo/packages/@expo/cli/src/start/interface/
H A DcommandsTable.ts20 logCommandsTable([{ key: '?', msg: 'show all commands' }]);
52 { key: 's', msg: switchMsg },
58 { key: 'w', msg: 'open web', disabled: isWebDisable },
60 { key: 'r', msg: 'reload app' },
64 { key: 'o', msg: 'open project code in your editor' },
65 { key: 'c', msg: 'show project QR' },
70 { key: 's', msg: switchMsg },
76 { key: 'j', msg: 'open debugger' },
77 { key: 'r', msg: 'reload app' },
92 .map(({ key, msg, status, disabled }) => {
[all …]
/expo/packages/@expo/cli/src/run/ios/appleDevice/protocol/
H A DGDBProtocol.ts87 const msg = buffer.slice(1, -3).toString(); constant
88 if (validateChecksum(checksum, msg)) {
89 return msg;
90 } else if (msg.startsWith('E')) {
91 if (msg.match(/the device was not, or could not be, unlocked/)) {
96 return msg.slice(1);
100 `Invalid checksum received from debugserver. (checksum: ${checksum}, msg: ${msg})`
110 write(socket: Socket, msg: GDBMessage) {
111 const { cmd, args } = msg;
138 export function validateChecksum(checksum: string, msg: string) {
[all …]
H A DAbstractProtocol.ts20 msg: string,
24 super(msg);
108 write(sock: Socket, msg: any): void;
118 sendMessage<ResponseType = any>(msg: MessageType): Promise<ResponseType>;
120 msg: MessageType,
124 msg: MessageType,
132 msg
160 this.writer.write(this.socket, msg);
H A DAFCProtocol.ts341 msg: string,
344 super(msg);
350 msg: string,
353 super(msg);
376 sendMessage(msg: AFCMessage): Promise<AFCResponse> {
390 this.writer.write(this.socket, { ...msg, requestId });
446 write(socket: Socket, msg: AFCMessage & { requestId: number }) {
447 const { data, payload, operation, requestId } = msg;
H A DUsbmuxProtocol.ts50 write(socket: Socket, msg: UsbmuxMessage) {
52 debug(`socket write: ${JSON.stringify(msg)}`);
53 const { messageType, extraFields } = msg;
/expo/android/expoview/src/main/java/host/exp/exponent/analytics/
H A DEXL.kt19 @JvmStatic fun d(tag: String?, msg: String) { in d()
20 Log.d(tag, msg) in d()
23 @JvmStatic fun w(tag: String?, msg: String) { in w()
24 Log.w(tag, msg) in w()
32 @JvmStatic fun e(tag: String?, msg: String?) { in e()
33 Log.e(tag, msg ?: "") in e()
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/sksl/
H A DSkSLErrorReporter.h32 void error(std::string_view msg, Position position);
38 void error(Position pos, std::string_view msg);
58 virtual void handleError(std::string_view msg, Position position) = 0;
73 void handleError(std::string_view msg, Position pos) override;
/expo/packages/expo-gl/ios/
H A DEXPlatformUtils.mm8 void EXiOSLog(const char *msg, ...) {
10 va_start(args, msg);
11 NSLog(@"%@", [[NSString alloc] initWithFormat:[NSString stringWithUTF8String:msg]
/expo/ios/versioned/sdk48/ExpoGL/ios/
H A DABI48_0_0EXPlatformUtils.mm8 void ABI48_0_0EXiOSLog(const char *msg, ...) {
10 va_start(args, msg);
11 NSLog(@"%@", [[NSString alloc] initWithFormat:[NSString stringWithUTF8String:msg]
/expo/ios/versioned/sdk49/ExpoGL/ios/
H A DABI49_0_0EXPlatformUtils.mm8 void ABI49_0_0EXiOSLog(const char *msg, ...) {
10 va_start(args, msg);
11 NSLog(@"%@", [[NSString alloc] initWithFormat:[NSString stringWithUTF8String:msg]
/expo/ios/versioned/sdk47/EXGL/ios/EXGL/
H A DABI47_0_0EXPlatformUtils.mm8 void ABI47_0_0EXiOSLog(const char *msg, ...) {
10 va_start(args, msg);
11 NSLog(@"%@", [[NSString alloc] initWithFormat:[NSString stringWithUTF8String:msg]
/expo/packages/@expo/cli/src/run/ios/appleDevice/client/
H A DDebugserverClient.ts51 const msg: any = { cmd: 'k', args: [] }; constant
52 return this.protocolClient.sendMessage(msg, (resp: string, resolve: any) => {
76 const msg = { cmd, args }; constant
78 const resp = await this.protocolClient.sendMessage(msg);
H A DServiceClient.ts22 msg: string,
25 super(msg);
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/sksl/
H A DSkSLErrorReporter.h28 void error(Position position, std::string_view msg);
46 virtual void handleError(std::string_view msg, Position position) = 0;
60 void handleError(std::string_view msg, Position pos) override;
/expo/packages/expo-router/build/head/
H A Durl.js53 function throwOrAlert(msg) { argument
58 console.error(msg);
59 alert(msg);
62 throw new Error(msg);
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/DevSupport/
H A DABI49_0_0RCTPackagerClient.m34 NSDictionary<NSString *, id> *msg = @{
40 NSString *message = ABI49_0_0RCTJSONStringify(msg, &jsError);
50 NSDictionary<NSString *, id> *msg = @{
56 NSString *message = ABI49_0_0RCTJSONStringify(msg, &jsError);
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/DevSupport/
H A DABI47_0_0RCTPackagerClient.m34 NSDictionary<NSString *, id> *msg = @{
40 NSString *message = ABI47_0_0RCTJSONStringify(msg, &jsError);
50 NSDictionary<NSString *, id> *msg = @{
56 NSString *message = ABI47_0_0RCTJSONStringify(msg, &jsError);
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/DevSupport/
H A DABI48_0_0RCTPackagerClient.m34 NSDictionary<NSString *, id> *msg = @{
40 NSString *message = ABI48_0_0RCTJSONStringify(msg, &jsError);
50 NSDictionary<NSString *, id> *msg = @{
56 NSString *message = ABI48_0_0RCTJSONStringify(msg, &jsError);
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/errorrecovery/
H A DErrorRecoveryHandler.kt67 override fun handleMessage(msg: Message) { in handleMessage()
68 when (msg.what) { in handleMessage()
69 MessageType.EXCEPTION_ENCOUNTERED -> maybeStartPipeline(msg.obj as Exception) in handleMessage()
71 …MessageType.REMOTE_LOAD_STATUS_CHANGED -> handleRemoteLoadStatusChanged(msg.obj as ErrorRecoveryDe… in handleMessage()
72 else -> throw RuntimeException("ErrorRecoveryHandler cannot handle message " + msg.what) in handleMessage()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecoveryHandler.kt67 override fun handleMessage(msg: Message) { in handleMessage()
68 when (msg.what) { in handleMessage()
69 MessageType.EXCEPTION_ENCOUNTERED -> maybeStartPipeline(msg.obj as Exception) in handleMessage()
71 …MessageType.REMOTE_LOAD_STATUS_CHANGED -> handleRemoteLoadStatusChanged(msg.obj as ErrorRecoveryDe… in handleMessage()
72 else -> throw RuntimeException("ErrorRecoveryHandler cannot handle message " + msg.what) in handleMessage()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecoveryHandler.kt67 override fun handleMessage(msg: Message) { in handleMessage()
68 when (msg.what) { in handleMessage()
69 MessageType.EXCEPTION_ENCOUNTERED -> maybeStartPipeline(msg.obj as Exception) in handleMessage()
71 …MessageType.REMOTE_LOAD_STATUS_CHANGED -> handleRemoteLoadStatusChanged(msg.obj as ErrorRecoveryDe… in handleMessage()
72 else -> throw RuntimeException("ErrorRecoveryHandler cannot handle message " + msg.what) in handleMessage()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/updates/errorrecovery/
H A DErrorRecoveryHandler.kt67 override fun handleMessage(msg: Message) { in handleMessage()
68 when (msg.what) { in handleMessage()
69 MessageType.EXCEPTION_ENCOUNTERED -> maybeStartPipeline(msg.obj as Exception) in handleMessage()
71 …MessageType.REMOTE_LOAD_STATUS_CHANGED -> handleRemoteLoadStatusChanged(msg.obj as ErrorRecoveryDe… in handleMessage()
72 else -> throw RuntimeException("ErrorRecoveryHandler cannot handle message " + msg.what) in handleMessage()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/circleci/
H A Dvalidate_yarn_lockfile.sh25 function msg { function
38 msg "Yarn validation failed."
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/circleci/
H A Dvalidate_yarn_lockfile.sh25 function msg { function
38 msg "Yarn validation failed."
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/CxxModule/
H A DABI49_0_0RCTCxxUtils.mm45 NSString *msg = @(e.what());
51 msg = [@"Unhandled JS Exception: " stringByAppendingString:msg];
63 msg = [NSString stringWithFormat:@"%@\n\n%@", msg, [nestedError localizedDescription]];
66 errorInfo[NSLocalizedDescriptionKey] = msg;

1234