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

1 2

  /external/webkit/Source/WebCore/websockets/
WebSocketChannelClient.h 44 virtual void didClose(unsigned long /* unhandledBufferedAmount */) { }
ThreadableWebSocketChannelClientWrapper.h 105 void didClose(unsigned long unhandledBufferedAmount)
155 m_client->didClose(m_bufferedAmount);
WebSocket.h 97 virtual void didClose(unsigned long unhandledBufferedAmount);
WebSocketChannel.h 61 virtual void disconnect(); // Will suppress didClose().
67 virtual void didClose(SocketStreamHandle*);
WebSocketChannel.cpp 122 m_handle->close(); // will call didClose()
164 void WebSocketChannel::didClose(SocketStreamHandle* handle)
166 LOG(Network, "WebSocketChannel %p didClose", this);
180 client->didClose(m_unhandledBufferedAmount);
398 didClose(m_handle.get());
WebSocket.cpp 180 // didClose notification may be already queued, which we will inadvertently process while waiting for bufferedAmount() to return.
181 // In this case m_channel will be set to null during didClose() call, thus we need to test validness of m_channel here.
249 didClose(0);
277 void WebSocket::didClose(unsigned long unhandledBufferedAmount)
279 LOG(Network, "WebSocket %p didClose", this);
WorkerThreadableWebSocketChannel.h 67 virtual void disconnect(); // Will suppress didClose().
100 virtual void didClose(unsigned long unhandledBufferedAmount);
  /external/webkit/Source/WebKit/chromium/public/
WebSocketStreamHandleClient.h 56 virtual void didClose(WebSocketStreamHandle*) = 0;
  /external/webkit/Source/WebCore/platform/network/
SocketStreamHandleClient.h 47 virtual void didClose(SocketStreamHandle*) { }
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebInspectorFrontendClient.cpp 72 m_page->inspector()->didClose();
77 m_page->inspector()->didClose();
  /external/webkit/Source/WebKit/chromium/src/
SocketStreamHandle.cpp 66 virtual void didClose(WebSocketStreamHandle*);
162 void SocketStreamHandleInternal::didClose(WebSocketStreamHandle* socketHandle)
164 LOG(Network, "didClose");
171 h->m_client->didClose(h);
184 h->m_client->didClose(h); // didFail(h, err);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebInspector.h 75 void didClose();
WebInspector.cpp 84 void WebInspector::didClose()
86 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::DidClose(), m_page->pageID());
  /external/webkit/Source/WebKit2/PluginProcess/
PluginProcess.h 72 virtual void didClose(CoreIPC::Connection*);
WebProcessConnection.h 62 virtual void didClose(CoreIPC::Connection*);
PluginProcess.cpp 116 void PluginProcess::didClose(CoreIPC::Connection*)
WebProcessConnection.cpp 136 void WebProcessConnection::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.h 67 virtual void didClose(CoreIPC::Connection*);
PluginProcessConnection.cpp 124 void PluginProcessConnection::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandleBrew.cpp 169 streamHandle->client()->didClose(streamHandle);
180 streamHandle->client()->didClose(streamHandle);
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 135 streamHandle->client()->didClose(streamHandle);
146 streamHandle->client()->didClose(streamHandle);
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 85 virtual void didClose(CoreIPC::Connection*);
  /external/webkit/Source/WebKit2/UIProcess/
WebInspectorProxy.cpp 191 void WebInspectorProxy::didClose()
WebInspectorProxy.h 114 void didClose();
  /external/chromium/webkit/glue/
websocketstreamhandle_impl.cc 49 virtual void DidClose(WebKit::WebSocketStreamHandle*);
61 // |bridge_| is alive from Connect to DidClose, so Context must be alive
78 AddRef(); // Will be released by DidClose().
99 // the |bridge_| here. Then |bridge_| will call back DidClose, and will
125 void WebSocketStreamHandleImpl::Context::DidClose(
127 VLOG(1) << "DidClose";
134 client->didClose(handle);
148 // DidClose.

Completed in 426 milliseconds

1 2