Home
last modified time | relevance | path

Searched refs:WebSocketException (Results 1 – 9 of 9) sorted by relevance

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
DNanoWSD.java194 …throw new WebSocketException(CloseCode.ProtocolError, "Previous continuous frame sequence not comp… in handleFrameFragment()
202 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment()
209 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment()
227 … throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence not completed."); in handleWebsocketFrame()
231 …throw new WebSocketException(CloseCode.ProtocolError, "Non control or continuous frame expected."); in handleWebsocketFrame()
254 if (e instanceof WebSocketException) { in readWebsocket()
255 … doClose(((WebSocketException) e).getCode(), ((WebSocketException) e).getReason(), false); in readWebsocket()
276 public static class WebSocketException extends IOException { class in NanoWSD
284 public WebSocketException(CloseCode code, String reason) { in WebSocketException() method in NanoWSD.WebSocketException
288 public WebSocketException(CloseCode code, String reason, Exception cause) { in WebSocketException() method in NanoWSD.WebSocketException
[all …]
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/
Dwebsocket.py78 class WebSocketException(Exception): class
85 class WebSocketConnectionClosedException(WebSocketException):
92 class WebSocketTimeoutException(WebSocketException):
453 raise WebSocketException("SSL not available.")
493 raise WebSocketException("Handshake Status %d" % status)
498 raise WebSocketException("Invalid WebSocket Header")
542 raise WebSocketException("Invalid header")
610 raise WebSocketException("Not a valid frame %s" % frame)
613 raise WebSocketException("Illegal frame")
845 raise WebSocketException("socket is already opened")
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
Dwebsocket.py11 from websocket import WebSocketException
Dtracing_backend.py206 except (socket.error, websocket.WebSocketException,
252 except (socket.error, websocket.WebSocketException):
Dmemory_backend.py78 except (socket.error, websocket.WebSocketException,
Dwebsocket_unittest.py36 self.assertNotEqual(websocket.WebSocketException, None)
Dinspector_backend.py35 except (socket.error, websocket.WebSocketException,
72 except (websocket.WebSocketException, exceptions.TimeoutException) as e:
Ddevtools_client_backend.py54 except websocket.WebSocketException:
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketChannelClient.java21 import de.tavendo.autobahn.WebSocketException;
103 } catch (WebSocketException e) { in connect()