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

  /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.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);
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());
WorkerThreadableWebSocketChannel.cpp 226 workerClientWrapper->didClose(unhandledBufferedAmount);
229 void WorkerThreadableWebSocketChannel::Peer::didClose(unsigned long unhandledBufferedAmount)
409 // Caller of this function should hold a reference to the bridge, because this function may call WebSocket::didClose() in the end,
  /external/webkit/Source/WebCore/platform/network/
SocketStreamHandleClient.h 47 virtual void didClose(SocketStreamHandle*) { }
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.cpp 124 void PluginProcessConnection::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit2/UIProcess/
WebInspectorProxy.cpp 191 void WebInspectorProxy::didClose()
WebProcessProxy.cpp 284 void WebProcessProxy::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebInspector.cpp 84 void WebInspector::didClose()
86 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::DidClose(), m_page->pageID());
  /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/PluginProcess/
PluginProcess.cpp 116 void PluginProcess::didClose(CoreIPC::Connection*)
WebProcessConnection.cpp 136 void WebProcessConnection::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.cpp 158 void PluginProcessProxy::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 640 void WebProcess::didClose(CoreIPC::Connection*)
  /external/webkit/Source/WebKit/win/
WebView.h 859 bool didClose() const { return m_didClose; }
    [all...]

Completed in 622 milliseconds