HomeSort by relevance Sort by last modified time
    Searched refs:httpStatusCode (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/network/
ResourceLoadInfo.h 36 : httpStatusCode(0)
39 int httpStatusCode;
ResourceResponseBase.h 75 int httpStatusCode() const;
  /external/webkit/Source/WebCore/html/
HTMLImageLoader.cpp 57 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
80 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
  /external/webkit/Source/WebKit/chromium/src/
WebHTTPLoadInfo.cpp 68 int WebHTTPLoadInfo::httpStatusCode() const
71 return m_private->httpStatusCode;
77 m_private->httpStatusCode = statusCode;
WebURLResponse.cpp 192 int WebURLResponse::httpStatusCode() const
194 return m_private->m_resourceResponse->httpStatusCode();
197 void WebURLResponse::setHTTPStatusCode(int httpStatusCode)
199 m_private->m_resourceResponse->setHTTPStatusCode(httpStatusCode);
  /external/chromium/webkit/glue/
alt_error_page_resource_fetcher.cc 45 if (!response.isNull() && response.httpStatusCode() == 200) {
image_resource_fetcher.cc 44 if (!response.isNull() && response.httpStatusCode() == 200) {
resource_fetcher_unittest.cc 111 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
125 EXPECT_EQ(delegate->response().httpStatusCode(), 404);
  /external/webkit/Source/WebKit/chromium/public/
WebHTTPLoadInfo.h 59 WEBKIT_API int httpStatusCode() const;
WebURLResponse.h 105 WEBKIT_API int httpStatusCode() const;
  /external/webkit/Source/WebCore/loader/
NetscapePlugInStreamLoader.cpp 91 if (response.httpStatusCode() < 100 || response.httpStatusCode() >= 400)
  /external/webkit/Source/WebCore/workers/
WorkerScriptLoader.cpp 106 if (response.httpStatusCode() / 100 != 2 && response.httpStatusCode()) {
  /external/webkit/Source/WebCore/fileapi/
FileReaderLoader.cpp 128 if (response.httpStatusCode() != 200) {
129 failed(httpStatusCodeToErrorCode(response.httpStatusCode()));
207 FileError::ErrorCode FileReaderLoader::httpStatusCodeToErrorCode(int httpStatusCode)
209 switch (httpStatusCode) {
FileReader.h 126 void fireErrorEvent(int httpStatusCode);
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceResponseSoup.cpp 42 soupMessage->status_code = httpStatusCode();
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebResponse.h 48 WebResponse(const std::string &url, const std::string &mimeType, long long expectedSize, const std::string &encoding, int httpStatusCode);
WebResponse.cpp 69 WebResponse::WebResponse(const string &url, const string &mimeType, long long expectedSize, const string &encoding, int httpStatusCode)
72 , m_httpStatusCode(httpStatusCode)
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.cpp 102 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
ApplicationCacheGroup.cpp 512 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")) {
    [all...]
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 406 int httpStatusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
408 if (httpStatusCode == 401 || httpStatusCode == 407)
411 if (receivedData && (httpStatusCode >= 400 && httpStatusCode < 600))
437 int httpStatusCode = m_replyWrapper->reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
439 if (httpStatusCode) {
440 ResourceError error("HTTP", httpStatusCode, url.toString(), m_replyWrapper->reply()->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString());
  /frameworks/base/core/java/android/webkit/
CacheManager.java 65 int httpStatusCode;
89 return httpStatusCode;
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.cpp 94 int status = response.httpStatusCode();
  /external/webkit/Source/WebCore/inspector/
InspectorConsoleAgent.cpp 208 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/
CachedResourceRequest.cpp 212 if (response.httpStatusCode() == 304) {
264 if (m_resource->response().httpStatusCode() >= 400) {
  /external/webkit/Source/WebCore/platform/network/win/
ResourceHandleWin.cpp 227 String httpStatusCode = queryHTTPHeader(d->m_requestHandle, HTTP_QUERY_STATUS_CODE);
228 if (!httpStatusCode.isNull())
229 response.setHTTPStatusCode(httpStatusCode.toInt());

Completed in 624 milliseconds

1 2