Searched defs:failingURL (Results 1 - 21 of 21) sorted by relevance

/external/webkit/Source/WebCore/platform/network/android/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
/external/webkit/Source/WebCore/platform/network/cf/
H A DSocketStreamError.h45 SocketStreamError(int errorCode, const String& failingURL, const String& localizedDescription) argument
46 : SocketStreamErrorBase(errorCode, failingURL, localizedDescription)
H A DResourceError.h52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
H A DResourceErrorCF.cpp49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate) argument
50 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
96 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey); local
97 if (failingURL) {
98 RetainPtr<CFURLRef> absoluteURLRef(AdoptCF, CFURLCopyAbsoluteURL(failingURL));
/external/webkit/Source/WebCore/platform/network/chromium/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/qt/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/loader/
H A DSubstituteData.h41 SubstituteData(PassRefPtr<SharedBuffer> content, const String& mimeType, const String& textEncoding, const KURL& failingURL, const KURL& responseURL = KURL()) argument
45 , m_failingURL(failingURL)
55 const KURL& failingURL() const { return m_failingURL; } function in class:WebCore::SubstituteData
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamErrorBase.h49 const String& failingURL() const { return m_failingURL; } function in class:WebCore::SocketStreamErrorBase
67 SocketStreamErrorBase(int errorCode, const String& failingURL, const String& localizedDescription) argument
69 , m_failingURL(failingURL)
H A DResourceErrorBase.h46 const String& failingURL() const { lazyInit(); return m_failingURL; } function in class:WebCore::ResourceErrorBase
62 ResourceErrorBase(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
65 , m_failingURL(failingURL)
/external/webkit/Source/WebKit2/Shared/
H A DWebError.h55 const String& failingURL() const { return m_platformError.failingURL(); } function in class:WebKit::WebError
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebCoreArgumentCodersGtk.cpp66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
73 String failingURL; local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebCoreArgumentCodersQt.cpp65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
72 String failingURL; local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebCoreArgumentCodersWin.cpp124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
135 String failingURL; local
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/WebKit/win/
H A DWebError.cpp190 HRESULT STDMETHODCALLTYPE WebError::failingURL( function in class:WebError
196 *result = BString(m_error.failingURL()).release();
H A DWebFrame.cpp556 void WebFrame::loadData(PassRefPtr<WebCore::SharedBuffer> data, BSTR mimeType, BSTR textEncodingName, BSTR baseURL, BSTR failingURL) argument
569 KURL failingKURL = MarshallingHelpers::BSTRToKURL(failingURL);
/external/webkit/Tools/DumpRenderTree/qt/
H A DWorkQueueItemQt.h85 LoadAlternateHTMLStringItem(const QString& content, const QString& baseURL, const QString &failingURL, QWebPage *page) argument
89 , m_failingURL(failingURL)
H A DLayoutTestControllerQt.cpp318 void LayoutTestController::queueLoadHTMLString(const QString& content, const QString& baseURL, const QString& failingURL) argument
320 if (failingURL.isEmpty())
323 WorkQueue::shared()->queue(new LoadAlternateHTMLStringItem(content, baseURL, failingURL, m_drt->webPage()));
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.cpp130 QString failingURL = error.failingURL(); local
131 return QString::fromLatin1("<NSError domain NSURLErrorDomain, code %1, failing URL \"%2\">").arg(error.errorCode()).arg(failingURL);
1144 option.url = QUrl(error.failingURL());

Completed in 635 milliseconds