Home
last modified time | relevance | path

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

/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocketConnectionD06.java85 private final OnControl _onControl; field in WebSocketConnectionD06
120 _onControl=_webSocket instanceof OnControl ? (OnControl)_webSocket : null; in WebSocketConnectionD06()
551 if (_onControl!=null && isControlFrame(opcode)) in onFrame()
553 if (_onControl.onControl(opcode,array,buffer.getIndex(),buffer.length())) in onFrame()
DWebSocketConnectionD08.java89 private final OnControl _onControl; field in WebSocketConnectionD08
137 _onControl=_webSocket instanceof OnControl ? (OnControl)_webSocket : null; in WebSocketConnectionD08()
632 if (_onControl!=null && isControlFrame(opcode)) in onFrame()
634 if (_onControl.onControl(opcode,array,buffer.getIndex(),buffer.length())) in onFrame()
DWebSocketConnectionRFC6455.java121 private final OnControl _onControl; field in WebSocketConnectionRFC6455
169 _onControl=_webSocket instanceof OnControl ? (OnControl)_webSocket : null; in WebSocketConnectionRFC6455()
695 if (_onControl!=null && isControlFrame(opcode)) in onFrame()
697 if (_onControl.onControl(opcode,array,buffer.getIndex(),buffer.length())) in onFrame()