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

  /external/chromium_org/third_party/WebKit/public/platform/
WebSocketStreamHandleClient.h 56 virtual void didClose(WebSocketStreamHandle*) = 0;
WebSocketHandleClient.h 72 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned short code, const WebString& reason) = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebSocketClient.h 55 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { }
60 virtual void didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { }
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannelClient.h 53 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { }
ThreadableWebSocketChannelClientWrapper.cpp 81 void ThreadableWebSocketChannelClientWrapper::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
84 m_client->didClose(closingHandshakeCompletion, code, reason);
ThreadableWebSocketChannelClientWrapper.h 54 void didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus, unsigned short code, const String& reason);
NewWebSocketChannelImpl.h 139 virtual void didClose(blink::WebSocketHandle*, bool wasClean, unsigned short code, const blink::WebString& reason) OVERRIDE;
WebSocket.h 125 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
WorkerThreadableWebSocketChannel.h 86 virtual void disconnect() OVERRIDE; // Will suppress didClose().
120 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
WebSocketTest.cpp 119 m_websocket->didClose(WebSocketChannelClient::ClosingHandshakeIncomplete, 1006, "");
285 TEST_F(WebSocketTest, didClose)
297 m_websocket->didClose(WebSocketChannelClient::ClosingHandshakeIncomplete, 1006, "");
466 m_websocket->didClose(WebSocketChannelClient::ClosingHandshakeComplete, 1000, String());
526 m_websocket->didClose(WebSocketChannelClient::ClosingHandshakeIncomplete, 1006, "");
645 m_websocket->didClose(WebSocketChannelClient::ClosingHandshakeIncomplete, 1006, "");
NewWebSocketChannelImpl.cpp 381 client->didClose(status, code, reason);
382 // client->didClose may delete this object.
491 void NewWebSocketChannelImpl::didClose(WebSocketHandle* handle, bool wasClean, unsigned short code, const blink::WebString& reason)
493 WTF_LOG(Network, "NewWebSocketChannelImpl %p didClose(%p, %d, %u, %s)", this, handle, wasClean, code, String(reason).utf8().data());
WorkerThreadableWebSocketChannel.cpp 386 workerClientWrapper->didClose(closingHandshakeCompletion, code, reason);
389 void WorkerThreadableWebSocketChannel::Peer::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
543 // Caller of this function should hold a reference to the bridge, because this function may call WebSocket::didClose() in the end,
WebSocket.cpp 675 void WebSocket::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
677 WTF_LOG(Network, "WebSocket %p didClose()", this);
MainThreadWebSocketChannel.cpp 296 client->didClose(m_receivedClosingHandshake ? WebSocketChannelClient::ClosingHandshakeComplete : WebSocketChannelClient::ClosingHandshakeIncomplete, m_closeEventCode, m_closeEventReason);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamHandleInternal.h 63 virtual void didClose(blink::WebSocketStreamHandle*);
SocketStreamHandle.cpp 139 void SocketStreamHandleInternal::didClose(blink::WebSocketStreamHandle* socketHandle)
141 WTF_LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 200 void WebSocketImpl::didClose(ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
203 m_client->didClose(static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
206 m_client->didClose(m_bufferedAmount - m_bufferedAmountAfterClose, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
WebSocketImpl.h 76 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.h 48 virtual void didClose(unsigned long unhandled_buffered_amount,
pepper_websocket_host.cc 164 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount,
  /external/chromium_org/content/child/
web_socket_stream_handle_impl.cc 60 virtual void DidClose(WebSocketStreamHandle*) OVERRIDE;
75 // |bridge_| is alive from Connect to DidClose, so Context must be alive
95 AddRef(); // Will be released by DidClose().
116 // the |bridge_| here. Then |bridge_| will call back DidClose, and will
142 void WebSocketStreamHandleImpl::Context::DidClose(
144 VLOG(1) << "DidClose";
151 client->didClose(handle);
177 // DidClose.
websocket_bridge.cc 75 IPC_MESSAGE_HANDLER(WebSocketMsg_DropChannel, DidClose)
184 void WebSocketBridge::DidClose(bool was_clean,
187 DVLOG(1) << "WebSocketBridge::DidClose("
197 client->didClose(this, was_clean, code, reason_to_pass);

Completed in 469 milliseconds