/external/chromium_org/chrome_frame/ |
urlmon_url_request_private.h | 144 Redirection() : http_code(0) { } 145 int http_code; member in struct:UrlmonUrlRequest::Status::Redirection 164 void SetRedirected(int http_code, const std::string& utf8_url) { 171 redirect_.http_code = http_code; 172 if (!net::HttpResponseHeaders::IsRedirectResponseCode(http_code)) 173 redirect_.http_code = 302; 188 redirect_.http_code = 0; 200 return redirect_.http_code != 0;
|
urlmon_url_request.cc | 314 int http_code = GetHttpResponseStatusFromBinding(binding_); local 315 status_.SetRedirected(http_code, WideToUTF8(status_text)); 388 int http_code = GetHttpResponseStatusFromBinding(binding_); local 392 if (IS_HTTP_SUCCESS_CODE(http_code)) { 396 DCHECK_LE(http_code, 206); 400 } else if (net::HttpResponseHeaders::IsRedirectResponseCode(http_code) && 700 status_.get_redirection().http_code, [all...] |
/external/chromium_org/cloud_print/gcp20/prototype/ |
cloud_print_request.cc | 97 int http_code = fetcher_->GetResponseCode(); local 102 if (http_code == net::HTTP_OK) { 110 NOTIMPLEMENTED() << "HTTP code: " << http_code; 111 delegate_->OnFetchError("dummy", -1, http_code); // After this object can
|
/external/chromium_org/chrome/browser/local_discovery/ |
privet_http.h | 39 // In case of non-HTTP errors, |http_code| will be -1. 41 // TODO(noamsml): Remove http_code from this delegate; it's unnecessary in 45 int http_code, 135 const PrivetLocalPrintOperation* print_operation, int http_code) = 0;
|
privet_local_printer_lister.h | 58 int http_code,
|
privet_http_impl.h | 71 int http_code, 189 int http_code, 280 int http_code,
|
privet_notifications.h | 63 int http_code,
|
privet_http_impl.cc | 250 int http_code, 267 http_code, 393 int http_code, 422 delegate_->OnPrivetPrintingError(this, http_code); 778 int http_code,
|
privet_local_printer_lister.cc | 97 int http_code,
|
privet_http_unittest.cc | 390 const PrivetLocalPrintOperation* print_operation, int http_code) { 391 OnPrivetPrintingErrorInternal(http_code); 394 MOCK_METHOD1(OnPrivetPrintingErrorInternal, void(int http_code)); [all...] |
privet_notifications.cc | 127 int http_code,
|
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_fetcher_unittest.cc | 42 int http_code; local 44 http_code = RC_REQUEST_OK; 47 http_code = RC_FORBIDDEN; 55 http_code,
|
/external/chromium_org/chrome/browser/ui/webui/print_preview/ |
print_preview_handler.h | 106 int http_code) OVERRIDE;
|
print_preview_handler.cc | [all...] |
/external/chromium_org/sync/tools/testserver/ |
chromiumsync_test.py | 452 http_code, raw_respon = testserver.HandleSetTransientError() 453 self.assertEqual(http_code, 200)
|