Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/
D_exceptions.py29 class WebSocketException(Exception): class
36 class WebSocketProtocolException(WebSocketException):
43 class WebSocketPayloadException(WebSocketException):
50 class WebSocketConnectionClosedException(WebSocketException):
58 class WebSocketTimeoutException(WebSocketException):
65 class WebSocketProxyException(WebSocketException):
72 class WebSocketBadStatusException(WebSocketException):
D_http.py66 raise WebSocketException(
79 raise WebSocketException("SSL not available.")
238 raise WebSocketException("Invalid header")
D_app.py167 raise WebSocketException("Ensure ping_interval > ping_timeout")
173 raise WebSocketException("socket is already opened")
D_handshake.py68 raise WebSocketException("Invalid WebSocket Header")
/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/webrtc/webrtc/examples/androidapp/third_party/autobanh/
Dautobanh.jarMETA-INF/MANIFEST.MF de/tavendo/autobahn/ByteBufferInputStream.class ByteBufferInputStream.java ...
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
Dwebsocket.py11 from websocket import WebSocketException
Dtracing_backend.py209 except (socket.error, websocket.WebSocketException,
255 except (socket.error, websocket.WebSocketException):
Dmemory_backend.py78 except (socket.error, websocket.WebSocketException,
Dwebsocket_unittest.py36 self.assertNotEqual(websocket.WebSocketException, None)
Dinspector_backend.py38 except (socket.error, websocket.WebSocketException,
75 except (websocket.WebSocketException, exceptions.TimeoutException,
Ddevtools_client_backend.py54 except websocket.WebSocketException:
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/bin/
Dwsdump.py143 except websocket.WebSocketException:
146 raise websocket.WebSocketException("Not a valid frame %s" % frame)
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketChannelClient.java21 import de.tavendo.autobahn.WebSocketException;
103 } catch (WebSocketException e) { in connect()
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/tests/
Dtest_websocket.py229 self.assertRaises(ws.WebSocketException, read_headers, HeaderSockMock("data/header02.txt"))
343 with self.assertRaises(ws.WebSocketException):
368 self.assertRaises(ws.WebSocketException, sock.recv)
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/
DChangeLog109 - all WebSocketException provide message string (#152)