Searched refs:isControlFrame (Results 1 - 8 of 8) sorted by relevance

/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
H A DWebSocketReader.java73 private boolean isControlFrame; field in class:WebSocketReader
98 if (isControlFrame) {
112 isControlFrame = (b0 & OPCODE_FLAG_CONTROL) != 0;
115 if (isControlFrame && !isFinalFrame) {
148 if (isControlFrame && frameLength > PAYLOAD_MAX) {
230 if (!isControlFrame) {
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketConnectionD06.java65 static boolean isControlFrame(int opcode) method in class:WebSocketConnectionD06
453 return isControlFrame(opcode);
551 if (_onControl!=null && isControlFrame(opcode))
H A DWebSocketConnectionRFC6455.java107 static boolean isControlFrame(byte opcode) method in class:WebSocketConnectionRFC6455
568 return isControlFrame(opcode);
669 if (isControlFrame(opcode) && buffer.length()>MAX_CONTROL_FRAME_PAYLOAD)
695 if (_onControl!=null && isControlFrame(opcode))
H A DWebSocketConnectionD08.java75 static boolean isControlFrame(byte opcode) method in class:WebSocketConnectionD08
525 return isControlFrame(opcode);
632 if (_onControl!=null && isControlFrame(opcode))
H A DWebSocketParserD06.java177 if (WebSocketConnectionD06.isControlFrame(_opcode)&&!WebSocketConnectionD06.isLastFrame(_flags))
H A DWebSocketParserD08.java217 if (WebSocketConnectionD08.isControlFrame(_opcode)&&!WebSocketConnectionD08.isLastFrame(_flags))
H A DWebSocketParserRFC6455.java217 if (WebSocketConnectionRFC6455.isControlFrame(_opcode)&&!WebSocketConnectionRFC6455.isLastFrame(_flags))
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketFrame.java154 } else if (opCode.isControlFrame() && !fin) {
203 if (opCode.isControlFrame()) {
346 public boolean isControlFrame() { method in class:WebSocketFrame.OpCode

Completed in 110 milliseconds