Searched refs:websocket (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocket.cpp43 OwnPtr<WebSocketImpl> websocket = adoptPtr(new WebSocketImpl(document, client));
44 if (websocket && websocket->isNull())
46 return websocket.leakPtr();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DwebSocketFrameView.css7 .websocket-frame-view {
11 .websocket-frame-view,
12 .websocket-frame-view .data-grid {
21 .websocket-frame-view .data-grid .data {
25 .websocket-frame-view-td {
31 .websocket-frame-view-row-outcoming {
35 .websocket-frame-view-row-opcode {
40 .websocket-frame-view-row-error {
H A DnetworkLogView.css433 .network-graph-bar.websocket {
438 .network-graph-bar.cached.websocket {
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dsystem_info_backend.py17 websocket = inspector_websocket.InspectorWebsocket()
20 websocket.Connect('ws://127.0.0.1:%i/devtools/page/%i' %
23 websocket.Connect('ws://127.0.0.1:%i/devtools/browser' % self._port)
24 res = websocket.SyncRequest(req, timeout)
26 websocket.Disconnect()
H A Dwebsocket.py11 util.GetTelemetryDir(), 'third_party', 'websocket-client')
13 from websocket import create_connection as _create_connection
14 from websocket import WebSocketException
15 from websocket import WebSocketTimeoutException
H A Dwebsocket_unittest.py12 from telemetry.core.backends.chrome import websocket namespace
15 # Minimal handler for a local websocket server.
26 self.send_header('upgrade', 'websocket')
35 self.assertNotEqual(websocket.create_connection, None)
36 self.assertNotEqual(websocket.WebSocketException, None)
37 self.assertNotEqual(websocket.WebSocketTimeoutException, None)
44 ws = websocket.create_connection(ws_url)
52 ws = websocket.create_connection(
H A Dinspector_websocket_unittest.py9 from telemetry.core.backends.chrome import websocket namespace
16 + Raises a websocket.WebSocketTimeoutException after 15 seconds in the
18 + Raises a websocket.WebSocketTimeoutException after 15 seconds in the
38 raise websocket.WebSocketTimeoutException()
41 raise websocket.WebSocketTimeoutException()
H A Dinspector_websocket.py10 from telemetry.core.backends.chrome import websocket namespace
26 """Create a websocket handler for communicating with Inspectors.
47 self._socket = websocket.create_connection(url, timeout=timeout)
97 except websocket.WebSocketTimeoutException:
122 except (socket.error, websocket.WebSocketException):
H A Dinspector_backend.py20 from telemetry.core.backends.chrome import websocket namespace
42 except (websocket.WebSocketException, util.TimeoutException):
/external/chromium_org/ppapi/tests/
H A Dtest_websocket.cc29 #include "ppapi/cpp/websocket.h"
32 #include "ppapi/utility/websocket/websocket_api.h"
36 // net/data/websocket/*_wsh.py.
333 // Test that a NULL resource isn't a websocket.
1165 TestWebSocketAPI websocket(instance_);
1167 websocket.Connect(pp::Var(GetFullURL(kEchoServerURL)), protocols, 0U);
1169 websocket.WaitForConnected();
1171 result = websocket.Send(pp::Var("hello"));
1173 result = websocket.Send(pp::Var("Goodbye"));
1182 result = websocket
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
H A DIRCProxyWebSocket.java17 import org.eclipse.jetty.websocket.WebSocket;
18 import org.eclipse.jetty.websocket.WebSocketServlet;
/external/chromium_org/net/server/
H A Dhttp_server.cc201 // Handles http requests or websocket messages.
231 scoped_ptr<WebSocket> websocket(
233 if (!websocket) // Not enough data was received.
235 connection->SetWebSocket(websocket.Pass());
/external/chromium_org/net/websockets/
H A Dwebsocket_job_test.cc572 WebSocketJob* websocket = new WebSocketJob(delegate_.get()); local
573 delegate_->set_job(websocket);
576 GURL("ws://127.0.0.1/"), websocket, context_.get(), NULL);
578 websocket->InitSocketStream(socket_.get());
627 "Upgrade: websocket\r\n"
635 "Upgrade: websocket\r\n"
1005 spdy_util_.SetHeader("sec-websocket-protocol", "sample",
1011 spdy_util_.SetHeader("sec-websocket-protocol", "sample",
1281 "Upgrade: websocket\r\n"
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DDOMWebSocketTest.cpp70 DOMWebSocketWithMockChannel* websocket = adoptRefCountedGarbageCollectedWillBeNoop(new DOMWebSocketWithMockChannel(context)); local
71 websocket->suspendIfNeeded();
72 return websocket;
/external/chromium_org/content/
H A Dcontent_common.target.darwin-arm.mk186 content/common/websocket.cc \
H A Dcontent_common.target.darwin-arm64.mk186 content/common/websocket.cc \
H A Dcontent_common.target.darwin-mips.mk186 content/common/websocket.cc \
H A Dcontent_common.target.darwin-mips64.mk184 content/common/websocket.cc \
H A Dcontent_common.target.darwin-x86.mk186 content/common/websocket.cc \
H A Dcontent_common.target.darwin-x86_64.mk186 content/common/websocket.cc \
H A Dcontent_common.target.linux-arm.mk186 content/common/websocket.cc \
H A Dcontent_common.target.linux-arm64.mk186 content/common/websocket.cc \
H A Dcontent_common.target.linux-mips.mk186 content/common/websocket.cc \
H A Dcontent_common.target.linux-mips64.mk184 content/common/websocket.cc \
H A Dcontent_common.target.linux-x86.mk186 content/common/websocket.cc \

Completed in 505 milliseconds

12