Searched refs:httpStatusCode (Results 1 - 25 of 47) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/
H A DResourceLoadInfo.h36 : httpStatusCode(0)
39 int httpStatusCode; member in struct:WebCore::ResourceLoadInfo
H A DResourceResponseBase.cpp127 data->m_httpStatusCode = httpStatusCode();
221 int ResourceResponseBase::httpStatusCode() const function in class:WebCore::ResourceResponseBase
580 if (a.httpStatusCode() != b.httpStatusCode())
/external/webkit/Source/WebCore/html/
H A DHTMLImageLoader.cpp57 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
80 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
/external/webkit/Source/WebKit/chromium/src/
H A DWebHTTPLoadInfo.cpp68 int WebHTTPLoadInfo::httpStatusCode() const function in class:WebKit::WebHTTPLoadInfo
71 return m_private->httpStatusCode;
77 m_private->httpStatusCode = statusCode;
H A DWebURLResponse.cpp192 int WebURLResponse::httpStatusCode() const function in class:WebKit::WebURLResponse
194 return m_private->m_resourceResponse->httpStatusCode();
197 void WebURLResponse::setHTTPStatusCode(int httpStatusCode) argument
199 m_private->m_resourceResponse->setHTTPStatusCode(httpStatusCode);
/external/chromium/webkit/glue/
H A Dalt_error_page_resource_fetcher.cc45 if (!response.isNull() && response.httpStatusCode() == 200) {
H A Dimage_resource_fetcher.cc44 if (!response.isNull() && response.httpStatusCode() == 200) {
H A Dresource_fetcher_unittest.cc111 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
125 EXPECT_EQ(delegate->response().httpStatusCode(), 404);
/external/webkit/Source/WebCore/fileapi/
H A DFileReaderLoader.cpp128 if (response.httpStatusCode() != 200) {
129 failed(httpStatusCodeToErrorCode(response.httpStatusCode()));
207 FileError::ErrorCode FileReaderLoader::httpStatusCodeToErrorCode(int httpStatusCode) argument
209 switch (httpStatusCode) {
H A DFileReader.h126 void fireErrorEvent(int httpStatusCode);
/external/webkit/Source/WebCore/loader/
H A DNetscapePlugInStreamLoader.cpp91 if (response.httpStatusCode() < 100 || response.httpStatusCode() >= 400)
/external/webkit/Source/WebCore/workers/
H A DWorkerScriptLoader.cpp106 if (response.httpStatusCode() / 100 != 2 && response.httpStatusCode()) {
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceResponseSoup.cpp42 soupMessage->status_code = httpStatusCode();
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebResponse.h48 WebResponse(const std::string &url, const std::string &mimeType, long long expectedSize, const std::string &encoding, int httpStatusCode);
H A DWebResponse.cpp69 WebResponse::WebResponse(const string &url, const string &mimeType, long long expectedSize, const string &encoding, int httpStatusCode) argument
72 , m_httpStatusCode(httpStatusCode)
/external/webkit/Source/WebKit/chromium/public/
H A DWebHTTPLoadInfo.h59 WEBKIT_API int httpStatusCode() const;
H A DWebURLResponse.h105 WEBKIT_API int httpStatusCode() const;
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheHost.cpp102 if (r.httpStatusCode() / 100 == 4 || r.httpStatusCode() / 100 == 5) {
186 if (response.httpStatusCode() / 100 == 4 || response.httpStatusCode() / 100 == 5)
221 || response.httpStatusCode() / 100 == 4 || response.httpStatusCode() / 100 == 5
H A DApplicationCacheGroup.cpp512 if (m_newestCache && response.httpStatusCode() == 304) { // Not modified.
526 if (response.httpStatusCode() / 100 != 2 || response.url() != m_currentHandle->firstRequest().url()) {
530 } else if (response.httpStatusCode() == 404 || response.httpStatusCode() == 410) {
658 if (response.httpStatusCode() == 404 || response.httpStatusCode() == 410) {
663 if (response.httpStatusCode() == 304)
666 if (response.httpStatusCode() / 100 != 2 || response.url() != m_manifestHandle->firstRequest().url() || !equalIgnoringCase(response.mimeType(), "text/cache-manifest")) {
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp406 int httpStatusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); local
408 if (httpStatusCode == 401 || httpStatusCode == 407)
411 if (receivedData && (httpStatusCode >= 400 && httpStatusCode < 600))
437 int httpStatusCode = m_replyWrapper->reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); local
439 if (httpStatusCode) {
440 ResourceError error("HTTP", httpStatusCode, url.toString(), m_replyWrapper->reply()->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString());
/external/webkit/Source/WebCore/loader/icon/
H A DIconLoader.cpp94 int status = response.httpStatusCode();
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleAgent.cpp208 if (response.httpStatusCode() >= 400) {
209 String message = makeString("Failed to load resource: the server responded with a status of ", String::number(response.httpStatusCode()), " (", response.httpStatusText(), ')');
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceRequest.cpp212 if (response.httpStatusCode() == 304) {
264 if (m_resource->response().httpStatusCode() >= 400) {
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp227 String httpStatusCode = queryHTTPHeader(d->m_requestHandle, HTTP_QUERY_STATUS_CODE); local
228 if (!httpStatusCode.isNull())
229 response.setHTTPStatusCode(httpStatusCode.toInt());
/external/webkit/Source/WebCore/notifications/
H A DNotification.cpp185 int status = response.httpStatusCode();

Completed in 300 milliseconds

12