Home
last modified time | relevance | path

Searched refs:checksum (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/run/ios/appleDevice/protocol/
H A DGDBProtocol.ts84 const checksum = buffer.slice(-3).toString(); constant
85 if (checksum.match(/#[0-9a-f]{2}/)) {
88 if (validateChecksum(checksum, msg)) {
100 `Invalid checksum received from debugserver. (checksum: ${checksum}, msg: ${msg})`
126 let checksum = 0;
128 checksum += cmdStr.charCodeAt(i);
130 let result = (checksum % 256).toString(16);
138 export function validateChecksum(checksum: string, msg: string) {
140 const checksumVal = checksum.startsWith('#') ? checksum.slice(1) : checksum;
/expo/packages/expo-module-scripts/bin/
H A Dexpo-module-configure33 rsync --checksum "$source" "$target"
44 rsync --checksum "$source" "$target"
/expo/packages/expo-modules-autolinking/scripts/ios/cocoapods/
H A Dsandbox.rb59 patched_spec.instance_variable_set(:@checksum, spec.checksum)