/external/webkit/Source/WebCore/loader/ |
SubstituteData.h | 41 SubstituteData(PassRefPtr<SharedBuffer> content, const String& mimeType, const String& textEncoding, const KURL& failingURL, const KURL& responseURL = KURL()) 45 , m_failingURL(failingURL) 55 const KURL& failingURL() const { return m_failingURL; }
|
/external/webkit/Source/WebKit2/Shared/gtk/ |
WebCoreArgumentCodersGtk.cpp | 66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); 73 String failingURL; 75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) 77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
|
/external/webkit/Source/WebKit2/Shared/qt/ |
WebCoreArgumentCodersQt.cpp | 65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); 72 String failingURL; 74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) 76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
|
/external/webkit/Source/WebCore/platform/network/android/ |
ResourceError.h | 38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
|
/external/webkit/Source/WebCore/platform/network/curl/ |
ResourceError.h | 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
|
/external/webkit/Source/WebCore/platform/network/qt/ |
ResourceError.h | 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
|
/external/webkit/Source/WebCore/platform/network/soup/ |
ResourceError.h | 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
|
/external/webkit/Source/WebCore/platform/network/win/ |
ResourceError.h | 38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
|
/external/webkit/Source/WebKit2/Shared/win/ |
WebCoreArgumentCodersWin.cpp | 124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); 135 String failingURL; 137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) 148 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCore::copyCertificateToData(certificateChain.first()).get()); 153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
|
/external/webkit/Source/WebCore/platform/network/ |
SocketStreamErrorBase.h | 49 const String& failingURL() const { return m_failingURL; } 67 SocketStreamErrorBase(int errorCode, const String& failingURL, const String& localizedDescription) 69 , m_failingURL(failingURL)
|
SocketStreamErrorBase.cpp | 54 if (a.failingURL() != b.failingURL())
|
ResourceErrorBase.h | 46 const String& failingURL() const { lazyInit(); return m_failingURL; } 62 ResourceErrorBase(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 65 , m_failingURL(failingURL)
|
ResourceErrorBase.cpp | 68 if (a.failingURL() != b.failingURL())
|
/external/webkit/Source/WebCore/platform/network/cf/ |
ResourceError.h | 52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) 65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
|
SocketStreamError.h | 45 SocketStreamError(int errorCode, const String& failingURL, const String& localizedDescription) 46 : SocketStreamErrorBase(errorCode, failingURL, localizedDescription)
|
ResourceErrorCF.cpp | 49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate) 50 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) 96 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey); 97 if (failingURL) { 98 RetainPtr<CFURLRef> absoluteURLRef(AdoptCF, CFURLCopyAbsoluteURL(failingURL));
|
/external/webkit/Source/WebCore/platform/network/chromium/ |
ResourceError.h | 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
|
/external/webkit/Source/WebKit2/Shared/ |
WebError.h | 55 const String& failingURL() const { return m_platformError.failingURL(); }
|
/external/webkit/Tools/DumpRenderTree/win/ |
ResourceLoadDelegate.cpp | 154 if (FAILED(error->failingURL(&failingURLSTR))) 157 wstring failingURL; 161 // See <rdar://problem/5064234> CFErrors should have failingURL key. 163 failingURL = wstringFromBSTR(failingURLSTR); 165 failingURL = descriptionSuitableForTestResult(identifier); 169 result += L", failing URL \"" + urlSuitableForTestResult(failingURL) + L"\">";
|
/external/webkit/Tools/DumpRenderTree/qt/ |
WorkQueueItemQt.h | 85 LoadAlternateHTMLStringItem(const QString& content, const QString& baseURL, const QString &failingURL, QWebPage *page) 89 , m_failingURL(failingURL)
|
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebViewClient.java | 79 String description, String failingUrl) { 80 mWrappedClient.onReceivedError(view, errorCode, description, failingUrl);
|
/packages/apps/Settings/src/com/android/settings/ |
SettingsSafetyLegalActivity.java | 77 String description, String failingUrl) { 78 showErrorAndFinish(failingUrl);
|
/external/webkit/Source/WebKit2/Shared/API/c/ |
WKError.cpp | 56 return toCopiedURLAPI(toImpl(errorRef)->failingURL());
|
/external/webkit/Tools/DumpRenderTree/mac/ |
ResourceLoadDelegate.mm | 61 NSURL *failingURL; 63 if ((failingURL = [[self userInfo] objectForKey:@"NSErrorFailingURLKey"])) 64 str = [str stringByAppendingFormat:@", failing URL \"%@\"", [failingURL _drt_descriptionSuitableForTestResult]];
|
/external/webkit/Source/WebKit/chromium/src/ |
WebURLError.cpp | 54 unreachableURL = KURL(ParsedURLString, error.failingURL());
|