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

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannelClient.h 54 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { }
NewWebSocketChannelImpl.cpp 395 client->didClose(status, code, reason);
396 // client->didClose may delete this object.
505 void NewWebSocketChannelImpl::didClose(WebSocketHandle* handle, bool wasClean, unsigned short code, const WebString& reason)
507 WTF_LOG(Network, "NewWebSocketChannelImpl %p didClose(%p, %d, %u, %s)", this, handle, wasClean, code, String(reason).utf8().data());
WorkerThreadableWebSocketChannel.cpp 346 bridge->client()->didClose(closingHandshakeCompletion, code, reason);
349 void Peer::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
463 // Caller of this function should hold a reference to the bridge, because this function may call WebSocket::didClose() in the end,
DOMWebSocket.cpp 661 void DOMWebSocket::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
663 WTF_LOG(Network, "WebSocket %p didClose()", this);
  /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/platform/network/
SocketStreamHandle.cpp 141 void SocketStreamHandleInternal::didClose(blink::WebSocketStreamHandle* socketHandle)
143 WTF_LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 202 void WebSocketImpl::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
205 m_client->didClose(static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
208 m_client->didClose(m_bufferedAmount - m_bufferedAmountAfterClose, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.cc 164 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount,

Completed in 170 milliseconds