Home
last modified time | relevance | path

Searched refs:_handshake (Results 1 – 2 of 2) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocketClientFactory.java361 private ByteArrayBuffer _handshake; field in WebSocketClientFactory.HandshakeConnection
413 if (_handshake==null) in handshake()
454 _handshake=new ByteArrayBuffer(request.toString(), false); in handshake()
461 int len = _handshake.length(); in handshake()
462 int flushed = _endp.flush(_handshake); in handshake()
470 return _handshake.length()==0; in handshake()
477 if (_handshake==null || _handshake.length()>0) in handle()
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/
Dwebsocket.py455 self._handshake(hostname, port, resource, **options)
457 def _handshake(self, host, port, resource, **options): member in WebSocket