Searched defs:didFail (Results 1 - 25 of 35) sorted by relevance

12

/external/webkit/WebCore/loader/
H A DThreadableLoaderClient.h46 virtual void didFail(const ResourceError&) { } function in class:WebCore::ThreadableLoaderClient
H A DSubresourceLoaderClient.h51 virtual void didFail(SubresourceLoader*, const ResourceError&) { } function in class:WebCore::SubresourceLoaderClient
H A DNetscapePlugInStreamLoader.cpp107 void NetscapePlugInStreamLoader::didFail(const ResourceError& error) function in class:WebCore::NetscapePlugInStreamLoader
112 m_client->didFail(this, error);
113 ResourceLoader::didFail(error);
120 m_client->didFail(this, error);
122 // If calling didFail spins the run loop the stream loader can reach the terminal state.
127 // We need to remove the stream loader after the call to didFail, since didFail can
H A DThreadableLoaderClientWrapper.h84 void didFail(const ResourceError& error) function in class:WebCore::ThreadableLoaderClientWrapper
88 m_client->didFail(error);
H A DSubresourceLoader.cpp198 void SubresourceLoader::didFail(const ResourceError& error) function in class:WebCore::SubresourceLoader
208 m_client->didFail(this, error);
215 ResourceLoader::didFail(error);
226 m_client->didFail(this, error);
232 // m_client->didFail. This should in theory not happen which is why the assert is here.
H A DDocumentThreadableLoader.cpp78 m_client->didFail(ResourceError());
103 m_client->didFail(ResourceError());
206 m_client->didFail(ResourceError());
240 void DocumentThreadableLoader::didFail(SubresourceLoader* loader, const ResourceError& error) function in class:WebCore::DocumentThreadableLoader
246 m_client->didFail(error);
267 m_client->didFail(loader->blockedError());
291 m_client->didFail(ResourceError());
320 m_client->didFail(error);
H A DMainResourceLoader.cpp432 void MainResourceLoader::didFail(const ResourceError& error) function in class:WebCore::MainResourceLoader
H A DResourceLoader.cpp116 didFail(frameLoader()->cancelledError(r));
301 void ResourceLoader::didFail(const ResourceError& error) function in class:WebCore::ResourceLoader
417 void ResourceLoader::didFail(ResourceHandle*, const ResourceError& error) function in class:WebCore::ResourceLoader
423 didFail(error);
428 didFail(blockedError());
433 didFail(cannotShowURLError());
H A DWorkerThreadableLoader.cpp156 clientWrapper->didFail(error);
216 workerClientWrapper->didFail(error);
219 void WorkerThreadableLoader::MainThreadBridge::didFail(const ResourceError& error) function in class:WebCore::WorkerThreadableLoader::MainThreadBridge
/external/webkit/WebCore/platform/network/
H A DSocketStreamHandleClient.h50 virtual void didFail(SocketStreamHandle*, const SocketStreamError&) { } function in class:WebCore::SocketStreamHandleClient
H A DResourceHandleClient.h73 virtual void didFail(ResourceHandle*, const ResourceError&) { } function in class:WebCore::ResourceHandleClient
/external/webkit/WebCore/loader/icon/
H A DIconLoader.cpp107 void IconLoader::didFail(SubresourceLoader* resourceLoader, const ResourceError&) function in class:WebCore::IconLoader
109 LOG(IconDatabase, "IconLoader::didFail() - Loader %p", resourceLoader);
113 // After it is resolved, we can restore an assertion that the load is in progress if ::didFail() is called
135 // After it is resolved, we can restore an assertion that the load is in progress if ::didFail() is called
H A DIconFetcher.cpp221 void IconFetcher::didFail(ResourceHandle* handle, const ResourceError&) function in class:WebCore::IconFetcher
/external/webkit/WebCore/workers/
H A DWorkerScriptLoader.cpp137 void WorkerScriptLoader::didFail(const ResourceError&) function in class:WebCore::WorkerScriptLoader
/external/webkit/WebCore/inspector/
H A DTimelineRecordFactory.cpp127 ScriptObject TimelineRecordFactory::createResourceFinishData(InspectorFrontend* frontend, unsigned long identifier, bool didFail) argument
131 data.set("didFail", didFail);
H A DInspectorTimelineAgent.cpp183 void InspectorTimelineAgent::didFinishLoadingResource(unsigned long identifier, bool didFail) argument
186 record.set("data", TimelineRecordFactory::createResourceFinishData(m_frontend, identifier, didFail));
/external/webkit/WebCore/platform/network/android/
H A DResourceHandleAndroid.cpp142 virtual void didFail(ResourceHandle*, const ResourceError& error) function in class:WebCore::SyncLoader
/external/webkit/WebCore/platform/network/qt/
H A DResourceHandleQt.cpp66 virtual void didFail(ResourceHandle*, const ResourceError&);
98 void WebCoreSynchronousLoader::didFail(ResourceHandle*, const ResourceError& error) function in class:WebCore::WebCoreSynchronousLoader
/external/webkit/WebKit/chromium/src/
H A DSocketStreamHandle.cpp67 virtual void didFail(WebSocketStreamHandle*, const WebSocketStreamError&);
175 void SocketStreamHandleInternal::didFail(WebSocketStreamHandle* socketHandle, const WebSocketStreamError& err) function in class:WebCore::SocketStreamHandleInternal
177 LOG(Network, "didFail");
184 h->m_client->didClose(h); // didFail(h, err);
H A DResourceHandle.cpp74 virtual void didFail(WebURLLoader*, const WebURLError&);
150 void ResourceHandleInternal::didFail(WebURLLoader*, const WebURLError& error) function in class:WebCore::ResourceHandleInternal
153 m_client->didFail(m_owner, error);
/external/webkit/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.cpp234 void EmbeddedWidget::didFail(const ResourceError& error) function in class:EmbeddedWidget
237 m_view->didFail(webError.get());
/external/webkit/WebCore/page/
H A DEventSource.cpp196 void EventSource::didFail(const ResourceError& error) function in class:WebCore::EventSource
/external/webkit/WebCore/platform/network/curl/
H A DResourceHandleCurl.cpp49 virtual void didFail(ResourceHandle*, const ResourceError&);
79 void WebCoreSynchronousLoader::didFail(ResourceHandle*, const ResourceError& error) function in class:WebCore::WebCoreSynchronousLoader
/external/webkit/WebCore/plugins/
H A DPluginStream.cpp458 void PluginStream::didFail(NetscapePlugInStreamLoader* loader, const ResourceError&) function in class:WebCore::PluginStream
/external/webkit/WebCore/websockets/
H A DWebSocketChannel.cpp220 void WebSocketChannel::didFail(SocketStreamHandle* handle, const SocketStreamError&) function in class:WebCore::WebSocketChannel
222 LOG(Network, "WebSocketChannel %p didFail", this);

Completed in 402 milliseconds

12