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

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
ThreadableWebSocketChannelClientWrapper.cpp 81 void ThreadableWebSocketChannelClientWrapper::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
84 m_client->didClose(closingHandshakeCompletion, code, reason);
WebSocketChannelClient.h 53 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { }
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);
  /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 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));
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.cc 164 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount,

Completed in 2163 milliseconds