Searched refs:ResourceError (Results 1 - 25 of 192) sorted by relevance

12345678

/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebErrors.h29 #include <WebCore/ResourceError.h>
35 WebCore::ResourceError cancelledError(const WebCore::ResourceRequest&);
36 WebCore::ResourceError blockedError(const WebCore::ResourceRequest&);
37 WebCore::ResourceError cannotShowURLError(const WebCore::ResourceRequest&);
38 WebCore::ResourceError interruptForPolicyChangeError(const WebCore::ResourceRequest&);
39 WebCore::ResourceError cannotShowMIMETypeError(const WebCore::ResourceResponse&);
40 WebCore::ResourceError fileDoesNotExistError(const WebCore::ResourceResponse&);
41 WebCore::ResourceError pluginWillHandleLoadError(const WebCore::ResourceResponse&);
/external/webkit/Source/WebKit/chromium/public/
H A DWebURLError.h38 namespace WebCore { class ResourceError; }
61 WebURLError(const WebCore::ResourceError&);
62 WebURLError& operator=(const WebCore::ResourceError&);
63 operator WebCore::ResourceError() const;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/qt/
H A DWebErrorsQt.cpp52 ResourceError cancelledError(const ResourceRequest& request)
54 ResourceError error = ResourceError("QtNetwork", QNetworkReply::OperationCanceledError, request.url().string(),
60 ResourceError blockedError(const ResourceRequest& request)
62 return ResourceError("WebKit", WebKitErrorCannotUseRestrictedPort, request.url().string(),
66 ResourceError cannotShowURLError(const ResourceRequest& request)
68 return ResourceError("WebKit", WebKitErrorCannotShowURL, request.url().string(),
72 ResourceError interruptForPolicyChangeError(const ResourceRequest& request)
74 return ResourceError("WebKit", WebKitErrorFrameLoadInterruptedByPolicyChange, request.url().string(),
78 ResourceError cannotShowMIMETypeErro
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
H A DWebErrorsWin.cpp42 ResourceError cancelledError(const ResourceRequest& request)
45 return ResourceError(kCFErrorDomainCFNetwork, kCFURLErrorCancelled, request.url().string(), String());
47 return ResourceError(); // FIXME
51 ResourceError blockedError(const ResourceRequest& request)
53 return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodeCannotUseRestrictedPort, request.url().string(), String());
56 ResourceError cannotShowURLError(const ResourceRequest& request)
58 return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodeCannotShowURL, request.url().string(), String());
61 ResourceError interruptForPolicyChangeError(const ResourceRequest& request)
63 return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodeFrameLoadInterruptedByPolicyChange, request.url().string(), String());
66 ResourceError cannotShowMIMETypeErro
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebErrorsGtk.cpp40 ResourceError cancelledError(const ResourceRequest& request)
42 return ResourceError(g_quark_to_string(WEBKIT_NETWORK_ERROR), WEBKIT_NETWORK_ERROR_CANCELLED,
46 ResourceError blockedError(const ResourceRequest& request)
48 return ResourceError(g_quark_to_string(WEBKIT_POLICY_ERROR), WEBKIT_POLICY_ERROR_CANNOT_USE_RESTRICTED_PORT,
52 ResourceError cannotShowURLError(const ResourceRequest& request)
54 return ResourceError(g_quark_to_string(WEBKIT_POLICY_ERROR), WEBKIT_POLICY_ERROR_CANNOT_SHOW_URL,
58 ResourceError interruptForPolicyChangeError(const ResourceRequest& request)
60 return ResourceError(g_quark_to_string(WEBKIT_POLICY_ERROR), WEBKIT_POLICY_ERROR_FRAME_LOAD_INTERRUPTED_BY_POLICY_CHANGE,
64 ResourceError cannotShowMIMETypeError(const ResourceResponse& response)
66 return ResourceError(g_quark_to_strin
[all...]
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceError.h34 class ResourceError : public ResourceErrorBase { class in namespace:WebCore
36 ResourceError() { } function in class:WebCore::ResourceError
38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebCore/platform/network/chromium/
H A DResourceError.h34 class ResourceError : public ResourceErrorBase { class in namespace:WebCore
36 ResourceError() function in class:WebCore::ResourceError
40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceError.h33 class ResourceError : public ResourceErrorBase class in namespace:WebCore
36 ResourceError() function in class:WebCore::ResourceError
40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebCore/platform/network/qt/
H A DResourceError.h33 class ResourceError : public ResourceErrorBase class in namespace:WebCore
36 ResourceError() function in class:WebCore::ResourceError
40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceError.h33 class ResourceError : public ResourceErrorBase class in namespace:WebCore
36 ResourceError() function in class:WebCore::ResourceError
40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceError.h32 class ResourceError : public ResourceErrorBase { class in namespace:WebCore
34 ResourceError() function in class:WebCore::ResourceError
38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLError.cpp35 #include "ResourceError.h"
42 WebURLError::WebURLError(const ResourceError& error)
47 WebURLError& WebURLError::operator=(const ResourceError& error)
59 WebURLError::operator ResourceError() const
62 return ResourceError();
64 return ResourceError(domain, reason,
/external/webkit/Source/WebCore/platform/network/
H A DResourceErrorBase.h33 class ResourceError;
39 // Makes a deep copy. Useful for when you need to use a ResourceError on another thread.
40 ResourceError copy() const;
52 static bool compare(const ResourceError&, const ResourceError&);
74 // The ResourceError subclass may "shadow" this method to lazily initialize platform specific fields
77 // The ResourceError subclass may "shadow" this method to copy platform specific fields
78 void platformCopy(ResourceError&) const {}
80 // The ResourceError subclass may "shadow" this method to compare platform specific fields
81 static bool platformCompare(const ResourceError argument
[all...]
H A DResourceErrorBase.cpp28 #include "ResourceError.h"
34 ResourceError ResourceErrorBase::copy() const
38 ResourceError errorCopy;
51 const_cast<ResourceError*>(static_cast<const ResourceError*>(this))->platformLazyInit();
54 bool ResourceErrorBase::compare(const ResourceError& a, const ResourceError& b)
H A DAuthenticationChallengeBase.h31 #include "ResourceError.h"
40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error);
46 const ResourceError& error() const;
62 ResourceError m_error;
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceError.h45 class ResourceError : public ResourceErrorBase { class in namespace:WebCore
47 ResourceError() function in class:WebCore::ResourceError
52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) function in class:WebCore::ResourceError
58 ResourceError(CFErrorRef error);
65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
68 ResourceError(CFStreamError error);
72 ResourceError(NSError *);
81 void platformCopy(ResourceError&) const;
82 static bool platformCompare(const ResourceError& a, const ResourceError
[all...]
H A DResourceErrorCF.cpp27 #include "ResourceError.h"
41 ResourceError::ResourceError(CFErrorRef cfError) function in class:WebCore::ResourceError
49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate) function in class:WebCore::ResourceError
56 PCCERT_CONTEXT ResourceError::certificate() const
68 void ResourceError::platformLazyInit()
115 void ResourceError::platformCopy(ResourceError& errorCopy) const
122 bool ResourceError
167 ResourceError::ResourceError(CFStreamError error) function in class:WebCore::ResourceError
[all...]
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceErrorMac.mm27 #import "ResourceError.h"
40 ResourceError::ResourceError(NSError *nsError)
47 ResourceError::ResourceError(CFErrorRef cfError)
54 void ResourceError::platformLazyInit()
75 bool ResourceError::platformCompare(const ResourceError& a, const ResourceError& b)
80 NSError *ResourceError
[all...]
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DFrameNetworkingContextWinCE.cpp29 #include "ResourceError.h"
51 WebCore::ResourceError FrameNetworkingContextWinCE::blockedError(const WebCore::ResourceRequest&) const
54 return WebCore::ResourceError();
/external/webkit/Source/WebKit2/Shared/
H A DWebError.h30 #include <WebCore/ResourceError.h>
46 static PassRefPtr<WebError> create(const WebCore::ResourceError& error)
58 const WebCore::ResourceError& platformError() const { return m_platformError; }
65 WebError(const WebCore::ResourceError& error)
72 WebCore::ResourceError m_platformError;
/external/webkit/Source/WebCore/platform/
H A DCrossThreadCopier.cpp37 #include "ResourceError.h"
54 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error)
/external/webkit/Source/WebCore/loader/
H A DThreadableLoaderClient.h37 class ResourceError;
49 virtual void didFail(const ResourceError&) { } argument
H A DNetscapePlugInStreamLoader.h43 virtual void didFail(NetscapePlugInStreamLoader*, const ResourceError&) = 0;
62 virtual void didFail(const ResourceError&);
68 virtual void didCancel(const ResourceError& error);
H A DSubresourceLoaderClient.h35 class ResourceError;
52 virtual void didFail(SubresourceLoader*, const ResourceError&) { } argument
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameNetworkingContext.h24 #include <WebCore/ResourceError.h>
39 virtual WebCore::ResourceError blockedError(const WebCore::ResourceRequest&) const;

Completed in 417 milliseconds

12345678