HomeSort by relevance Sort by last modified time
    Searched refs:WebSocketException (Results 1 - 16 of 16) sorted by null

  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/
_exceptions.py 29 class WebSocketException(Exception):
36 class WebSocketProtocolException(WebSocketException):
43 class WebSocketPayloadException(WebSocketException):
50 class WebSocketConnectionClosedException(WebSocketException):
58 class WebSocketTimeoutException(WebSocketException):
65 class WebSocketProxyException(WebSocketException):
72 class WebSocketBadStatusException(WebSocketException):
_http.py 66 raise WebSocketException(
79 raise WebSocketException("SSL not available.")
238 raise WebSocketException("Invalid header")
_handshake.py 68 raise WebSocketException("Invalid WebSocket Header")
_app.py 167 raise WebSocketException("Ensure ping_interval > ping_timeout")
173 raise WebSocketException("socket is already opened")
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
websocket.py 11 from websocket import WebSocketException
memory_backend.py 78 except (socket.error, websocket.WebSocketException,
websocket_unittest.py 36 self.assertNotEqual(websocket.WebSocketException, None)
tracing_backend.py 209 except (socket.error, websocket.WebSocketException,
255 except (socket.error, websocket.WebSocketException):
inspector_backend.py 38 except (socket.error, websocket.WebSocketException,
75 except (websocket.WebSocketException, exceptions.TimeoutException,
209 exceptions.WebSocketException
237 exceptions.WebSocketException
269 exceptions.WebSocketException
468 error: An instance of socket.error or websocket.WebSocketException.
devtools_client_backend.py 54 except websocket.WebSocketException:
  /external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
autobanh.jar 
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
NanoWSD.java 194 throw new WebSocketException(CloseCode.ProtocolError, "Previous continuous frame sequence not completed.");
202 throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started.");
209 throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started.");
227 throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence not completed.");
231 throw new WebSocketException(CloseCode.ProtocolError, "Non control or continuous frame expected.");
254 if (e instanceof WebSocketException) {
255 doClose(((WebSocketException) e).getCode(), ((WebSocketException) e).getReason(), false);
276 public static class WebSocketException extends IOException {
284 public WebSocketException(CloseCode code, String reason)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/bin/
wsdump.py 143 except websocket.WebSocketException:
146 raise websocket.WebSocketException("Not a valid frame %s" % frame)
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 21 import de.tavendo.autobahn.WebSocketException;
103 } catch (WebSocketException e) {
  /prebuilts/tools/common/m2/repository/com/firebase/tubesock/0.0.12/
tubesock-0.0.12.jar 
  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/tests/
test_websocket.py 229 self.assertRaises(ws.WebSocketException, read_headers, HeaderSockMock("data/header02.txt"))
343 with self.assertRaises(ws.WebSocketException):
368 self.assertRaises(ws.WebSocketException, sock.recv)

Completed in 117 milliseconds