/external/chromium_org/components/dom_distiller/core/ |
distiller_url_fetcher.cc | 52 static const int kMaxRetries = 5; 53 fetcher->SetMaxRetriesOn5xx(kMaxRetries);
|
/external/chromium_org/google_apis/gaia/ |
ubertoken_fetcher.cc | 17 const int UbertokenFetcher::kMaxRetries = 3; 55 if (retry_number_ < kMaxRetries) {
|
ubertoken_fetcher.h | 43 static const int kMaxRetries;
|
ubertoken_fetcher_unittest.cc | 108 for (int i = 0; i < UbertokenFetcher::kMaxRetries; ++i) { 126 for (int i = 0; i < UbertokenFetcher::kMaxRetries; ++i) {
|
/external/chromium_org/remoting/host/ |
oauth_token_getter.cc | 19 const int kMaxRetries = 3; 77 gaia_oauth_client_->GetUserEmail(access_token, kMaxRetries, this); 177 kMaxRetries, this);
|
config_file_watcher.cc | 30 const int kMaxRetries = 3; 210 if (errno == EACCES && retries_ < kMaxRetries) {
|
/external/chromium_org/components/google/core/browser/ |
google_url_tracker.cc | 249 // Configure to retry at most kMaxRetries times for 5xx errors. 250 static const int kMaxRetries = 5; 251 fetcher_->SetMaxRetriesOn5xx(kMaxRetries); 253 // Also retry kMaxRetries times on network change errors. A network change can 259 fetcher_->SetAutomaticallyRetryOnNetworkChanges(kMaxRetries);
|
/external/chromium_org/chrome/browser/chromeos/login/signin/ |
oauth2_login_manager.cc | 36 static const int kMaxRetries = 5; 186 std::vector<std::string>(1, kServiceScopeGetUserInfo), kMaxRetries, 193 account_id_fetcher_->GetUserEmail(access_token, kMaxRetries, this);
|
/external/chromium_org/components/data_reduction_proxy/browser/ |
data_reduction_proxy_settings.cc | 534 // Configure max retries to be at most kMaxRetries times for 5xx errors. 535 static const int kMaxRetries = 5; 536 fetcher->SetMaxRetriesOn5xx(kMaxRetries); 537 fetcher->SetAutomaticallyRetryOnNetworkChanges(kMaxRetries);
|
/external/chromium_org/chrome/browser/extensions/updater/ |
extension_downloader.cc | 97 kMaxRetries, \ 98 kMaxRetries + 1); \ 103 kMaxRetries, \ 104 kMaxRetries + 1); \ 534 manifests_queue_.active_request_failure_count() < kMaxRetries) { 828 extensions_queue_.active_request_failure_count() < kMaxRetries) { [all...] |
extension_downloader.h | 127 static const int kMaxRetries = 10;
|
extension_updater_unittest.cc | [all...] |
/external/chromium_org/chrome/browser/history/ |
web_history_service.cc | 46 const size_t kMaxRetries = 1; 166 fetcher->SetMaxRetriesOn5xx(kMaxRetries);
|
/external/chromium_org/components/signin/core/browser/ |
account_tracker_service.cc | 100 const int kMaxRetries = 3; 101 gaia_oauth_client_->GetUserInfo(access_token, kMaxRetries, this);
|
/external/chromium_org/chromeos/network/ |
network_device_handler_impl.cc | 199 const int kMaxRetries = 5; 202 params.retry_count < kMaxRetries) {
|
/external/chromium_org/third_party/libvpx/source/libvpx/ |
y4minput.c | 23 const int kMaxRetries = 5; 41 } while (!feof(file) && len < size && ++retry_count < kMaxRetries); [all...] |
/external/libvpx/libvpx/ |
y4minput.c | 23 const int kMaxRetries = 5; 41 } while (!feof(file) && len < size && ++retry_count < kMaxRetries); [all...] |