Searched refs:msgLen (Results 1 – 3 of 3) sorted by relevance
112 final int msgLen = bb.getInt(); in receiveMessage() local114 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()
533 int msgLen = msg.length(); in countAsciiSeptets() local534 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() local590 for (int i = 0; i < msgLen; i++) { in encode7bitAscii()694 int msgLen = msg.length(); in encode7bitAsciiEms() local695 BitwiseOutputStream outStream = new BitwiseOutputStream(msgLen + in encode7bitAsciiEms()698 for (int i = 0; i < msgLen; i++) { in encode7bitAsciiEms()
41 typedef void (*MessageHandlerFunc_t)(uint32_t msgNum, const void *msgData, size_t msgLen);