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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceLoadInfo.h 37 : httpStatusCode(0)
40 int httpStatusCode;
ResourceResponse.cpp 139 data->m_httpStatusCode = httpStatusCode();
236 int ResourceResponse::httpStatusCode() const
516 if (a.httpStatusCode() != b.httpStatusCode())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageLoader.cpp 52 errorOccurred = (image()->response().httpStatusCode() >= 400); // An <object> considers a 404 to be an error and should fire onerror.
68 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
ChromiumUrlRequest.java 157 int httpStatusCode = super.getHttpStatusCode();
165 if (httpStatusCode == 206) {
166 httpStatusCode = 200;
168 return httpStatusCode;
HttpUrlConnectionUrlRequest.java 394 int httpStatusCode = mHttpStatusCode;
401 if (httpStatusCode == HttpStatus.SC_PARTIAL_CONTENT) {
402 httpStatusCode = HttpStatus.SC_OK;
404 return httpStatusCode;
  /external/chromium_org/components/nacl/renderer/
manifest_downloader.cc 38 if (response.httpStatusCode() != 200)
40 status_code_ = response.httpStatusCode();
file_downloader.cc 41 http_status_code_ = response.httpStatusCode();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebHTTPLoadInfo.cpp 67 int WebHTTPLoadInfo::httpStatusCode() const
70 return m_private->httpStatusCode;
76 m_private->httpStatusCode = statusCode;
WebURLResponse.cpp 224 int WebURLResponse::httpStatusCode() const
226 return m_private->m_resourceResponse->httpStatusCode();
229 void WebURLResponse::setHTTPStatusCode(int httpStatusCode)
231 m_private->m_resourceResponse->setHTTPStatusCode(httpStatusCode);
  /external/chromium_org/content/renderer/fetchers/
multi_resolution_image_resource_fetcher.cc 47 http_status_code_ = response.httpStatusCode();
image_resource_fetcher.cc 50 if (!response.isNull() && response.httpStatusCode() == 200) {
  /frameworks/base/core/java/android/webkit/
CacheManager.java 52 int httpStatusCode;
76 return httpStatusCode;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 108 int httpStatusCode() const { return m_httpStatusCode; }
109 void setHTTPStatusCode(int httpStatusCode) { m_httpStatusCode = httpStatusCode; }
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.cpp 114 if (response.httpStatusCode() / 100 != 2 && response.httpStatusCode()) {
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CrossOriginAccessControl.cpp 150 if (!response.httpStatusCode()) {
193 if (response.httpStatusCode() < 200 || response.httpStatusCode() >= 400) {
194 errorDescription = "Invalid HTTP status code " + String::number(response.httpStatusCode());
ResourceLoader.cpp 343 if (resource->isCacheValidator() && resourceResponse.httpStatusCode() == 304)
377 if (m_resource->response().httpStatusCode() < 400 || m_resource->shouldIgnoreHTTPStatusCodeErrors())
397 if (m_resource->response().httpStatusCode() >= 400 && !m_resource->shouldIgnoreHTTPStatusCodeErrors())
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.cpp 171 if (response.httpStatusCode() != 200) {
172 failed(httpStatusCodeToErrorCode(response.httpStatusCode()));
292 FileError::ErrorCode FileReaderLoader::httpStatusCodeToErrorCode(int httpStatusCode)
294 switch (httpStatusCode) {
FileReader.h 110 void fireErrorEvent(int httpStatusCode);
  /external/chromium_org/third_party/WebKit/public/platform/
WebHTTPLoadInfo.h 59 BLINK_PLATFORM_EXPORT int httpStatusCode() const;
WebURLResponse.h 115 BLINK_PLATFORM_EXPORT int httpStatusCode() const;
  /external/chromium_org/content/renderer/media/android/
media_info_loader.cc 119 << " " << response.httpStatusCode();
125 if (response.httpStatusCode() == kHttpOK) {
  /external/chromium_org/content/renderer/media/
cache_util.cc 29 const int code = response.httpStatusCode();
  /external/chromium_org/content/renderer/
resource_fetcher_browsertest.cc 159 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
175 EXPECT_EQ(delegate->response().httpStatusCode(), 404);
246 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
263 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
  /external/chromium_org/content/renderer/pepper/
url_response_info_util.cc 77 data.status_code = response.httpStatusCode();
  /external/chromium_org/content/test/
weburl_loader_mock_factory.cc 92 while (response.httpStatusCode() >= 300 &&
93 response.httpStatusCode() < 400) {

Completed in 912 milliseconds

1 2