Searched refs:didFail (Results 1 - 25 of 136) sorted by relevance

123456

/external/webkit/Source/WebCore/fileapi/
H A DFileReaderLoaderClient.h45 virtual void didFail(int errorCode) = 0;
H A DAsyncFileWriterClient.h46 virtual void didFail(FileError::ErrorCode) = 0;
H A DFileWriterSync.h63 void didFail(FileError::ErrorCode);
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileWriterClient.h48 // Called if the write or truncate fails, or if it is cancelled before the write or truncate completes. Completion of an operation will be signalled exactly once, either by didFail, didTruncate, or didWrite(..., true).
49 virtual void didFail(WebFileError) = 0;
H A DWebStorageQuotaCallbacks.h47 virtual void didFail(WebStorageQuotaError) = 0;
H A DWebFileSystemCallbacks.h65 virtual void didFail(WebFileError) = 0;
H A DWebSocketStreamHandleClient.h59 virtual void didFail(WebSocketStreamHandle*, const WebSocketStreamError&) = 0;
H A DWebURLLoaderClient.h70 virtual void didFail(WebURLLoader*, const WebURLError&) { } function in class:WebKit::WebURLLoaderClient
/external/webkit/Source/WebCore/loader/
H A DNetscapePlugInStreamLoader.h43 virtual void didFail(NetscapePlugInStreamLoader*, const ResourceError&) = 0;
62 virtual void didFail(const ResourceError&);
H A DNetscapePlugInStreamLoader.cpp113 void NetscapePlugInStreamLoader::didFail(const ResourceError& error) function in class:WebCore::NetscapePlugInStreamLoader
118 m_client->didFail(this, error);
119 ResourceLoader::didFail(error);
126 m_client->didFail(this, error);
128 // If calling didFail spins the run loop the stream loader can reach the terminal state.
133 // We need to remove the stream loader after the call to didFail, since didFail can
H A DThreadableLoaderClient.h49 virtual void didFail(const ResourceError&) { } function in class:WebCore::ThreadableLoaderClient
H A DSubresourceLoaderClient.h52 virtual void didFail(SubresourceLoader*, const ResourceError&) { } function in class:WebCore::SubresourceLoaderClient
H A DThreadableLoaderClientWrapper.h90 void didFail(const ResourceError& error) function in class:WebCore::ThreadableLoaderClientWrapper
94 m_client->didFail(error);
H A DPingLoader.h67 void didFail(ResourceHandle*, const ResourceError&) { delete this; } function in class:WebCore::PingLoader
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceRequest.h42 void didFail(bool cancelled = false);
53 virtual void didFail(SubresourceLoader*, const ResourceError&);
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileWriterChromium.cpp86 void AsyncFileWriterChromium::didFail(WebKit::WebFileError error) function in class:WebCore::AsyncFileWriterChromium
88 m_client->didFail(static_cast<FileError::ErrorCode>(error));
H A DWebFileSystemCallbacksImpl.cpp97 void WebFileSystemCallbacksImpl::didFail(WebFileError error) function in class:WebKit::WebFileSystemCallbacksImpl
99 m_callbacks->didFail(error);
H A DAsyncFileWriterChromium.h65 virtual void didFail(WebKit::WebFileError);
H A DWebFileSystemCallbacksImpl.h61 virtual void didFail(WebFileError error);
H A DWebStorageQuotaCallbacksImpl.cpp75 void WebStorageQuotaCallbacksImpl::didFail(WebStorageQuotaError error) function in class:WebKit::WebStorageQuotaCallbacksImpl
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamHandleClient.h50 virtual void didFail(SocketStreamHandle*, const SocketStreamError&) { } function in class:WebCore::SocketStreamHandleClient
/external/webkit/Source/WebCore/platform/
H A DAsyncFileSystemCallbacks.h68 virtual void didFail(int code) = 0;
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebEmbeddedView.idl45 HRESULT didFail([in] IWebError* error);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp102 void WebDownloadClient::didFail(WebContext* webContext, DownloadProxy* downloadProxy, const ResourceError& error) function in class:WebKit::WebDownloadClient
104 if (!m_client.didFail)
107 m_client.didFail(toAPI(webContext), toAPI(downloadProxy), toAPI(error), m_client.clientInfo);
/external/webkit/Source/WebCore/loader/icon/
H A DIconLoader.h55 virtual void didFail(SubresourceLoader*, const ResourceError&);

Completed in 285 milliseconds

123456