Home
last modified time | relevance | path

Searched refs:sendControl (Results 1 – 5 of 5) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocket.java263 void sendControl(byte control,byte[] data, int offset, int length) throws IOException; in sendControl() method
DWebSocketConnectionD06.java347 … public void sendControl(byte control, byte[] data, int offset, int length) throws IOException in sendControl() method in WebSocketConnectionD06.FrameConnectionD06
615 …_connection.sendControl(WebSocketConnectionD06.OP_PONG,buffer.array(),buffer.getIndex(),buffer.len… in onFrame()
DWebSocketConnectionD08.java420 public void sendControl(byte ctrl, byte[] data, int offset, int length) throws IOException in sendControl() method in WebSocketConnectionD08.WSFrameConnection
687 …_connection.sendControl(WebSocketConnectionD08.OP_PONG,buffer.array(),buffer.getIndex(),buffer.len… in onFrame()
DWebSocketConnectionRFC6455.java462 public void sendControl(byte ctrl, byte[] data, int offset, int length) throws IOException in sendControl() method in WebSocketConnectionRFC6455.WSFrameConnection
757 …_connection.sendControl(WebSocketConnectionRFC6455.OP_PONG,buffer.array(),buffer.getIndex(),buffer… in onFrame()
DWebSocketConnectionD00.java251 public void sendControl(byte code, byte[] content, int offset, int length) throws IOException in sendControl() method in WebSocketConnectionD00