Home
last modified time | relevance | path

Searched refs:_websocket (Results 1 – 4 of 4) sorted by relevance

/external/libvncserver/webclients/novnc/include/
Dwebsock.js53 this._websocket = null; // WebSocket object
173 if (this._websocket.bufferedAmount !== 0) {
174 Util.Debug("bufferedAmount: " + this._websocket.bufferedAmount);
177 if (this._websocket.bufferedAmount < this.maxBufferedAmount) {
179 this._websocket.send(this._encode_message());
186 this._websocket.bufferedAmount);
211 this._websocket = null;
275 this._websocket = new WebSocket(uri, protocols);
278 this._websocket.binaryType = 'arraybuffer';
281 this._websocket.onmessage = this._recv_message.bind(this);
[all …]
/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocketConnectionD00.java48 private final WebSocket _websocket; field in WebSocketConnectionD00
61 _websocket = websocket; in WebSocketConnectionD00()
65 _parser = new WebSocketParserD00(buffers, endpoint, new FrameHandlerD00(_websocket)); in WebSocketConnectionD00()
130 if (_websocket instanceof OnFrame) in handle()
131 ((OnFrame)_websocket).onHandshake(this); in handle()
132 _websocket.onOpen(this); in handle()
219 _websocket.onClose(WebSocketConnectionD06.CLOSE_NORMAL,""); in onClose()
393 if (_websocket instanceof OnFrame) in onFrameHandshake()
395 ((OnFrame)_websocket).onHandshake(this); in onFrameHandshake()
401 _websocket.onOpen(this); in onWebsocketOpen()
[all …]
DWebSocketClient.java395 final WebSocket _websocket; field in WebSocketClient.WebSocketFuture
405 _websocket=websocket; in WebSocketFuture()
430 if (_websocket instanceof WebSocket.OnFrame) in onConnection()
431 … ((WebSocket.OnFrame)_websocket).onHandshake((WebSocket.FrameConnection)con.getConnection()); in onConnection()
433 _websocket.onOpen(con.getConnection()); in onConnection()
483 return _websocket; in getWebSocket()
509 return "[" + _uri + ","+_websocket+"]@"+hashCode(); in toString()
600 _websocket.onClose(code,message); in closeChannel()
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
Dinspector_backend.py47 self._websocket = inspector_websocket.InspectorWebsocket()
48 self._websocket.RegisterDomain(
61 self._websocket.Connect(self.debugger_url)
62 self._console = inspector_console.InspectorConsole(self._websocket)
63 self._memory = inspector_memory.InspectorMemory(self._websocket)
65 self._websocket, timeout=timeout)
66 self._runtime = inspector_runtime.InspectorRuntime(self._websocket)
76 if self._websocket:
77 self._websocket.Disconnect()
291 self._websocket.Disconnect()