Home
last modified time | relevance | path

Searched refs:msgLen (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/clipboard/
H A DEmulatorClipboardMonitor.java112 final int msgLen = bb.getInt(); in receiveMessage() local
114 if (msgLen < 0 || msgLen > MAX_CLIPBOARD_BYTES) { in receiveMessage()
115 throw new ProtocolException("Clipboard message length: " + msgLen + " out of bounds."); in receiveMessage()
118 final byte[] msg = new byte[msgLen]; in receiveMessage()
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java533 int msgLen = msg.length(); in countAsciiSeptets() local
534 if (force) return msgLen; in countAsciiSeptets()
535 for (int i = 0; i < msgLen; i++) { in countAsciiSeptets()
540 return msgLen; in countAsciiSeptets()
589 int msgLen = msg.length(); in encode7bitAscii() local
590 for (int i = 0; i < msgLen; i++) { in encode7bitAscii()
694 int msgLen = msg.length(); in encode7bitAsciiEms() local
695 BitwiseOutputStream outStream = new BitwiseOutputStream(msgLen + in encode7bitAsciiEms()
698 for (int i = 0; i < msgLen; i++) { in encode7bitAsciiEms()