HomeSort by relevance Sort by last modified time
    Searched defs:retry (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
auto_enrollment_check_screen.cc 132 // Determine whether a retry is in order.
133 bool retry = (new_captive_portal_status == local
159 // Retry if applicable. This is last so eventual callbacks find consistent
161 if (retry)
162 auto_enrollment_controller_->Retry();
  /device/asus/grouper/power/
power.c 92 int n, cpu, ret, retry = RETRY_TIME_CHANGING_FREQ; local
115 while (retry) {
123 retry--;
126 while (retry) {
133 retry--;
  /art/compiler/dex/quick/x86/
fp_x86.cc 400 LIR* retry = NewLIR0(kPseudoTargetLabel); local
413 branch->target = retry;
  /device/asus/flo/power/
power_flo.c 117 int n, cpu, ret, retry = RETRY_TIME_CHANGING_FREQ; local
140 while (retry) {
148 retry--;
151 while (retry) {
158 retry--;
  /device/lge/hammerhead/power/
power_hammerhead.c 117 int n, cpu, ret, retry = RETRY_TIME_CHANGING_FREQ; local
140 while (retry) {
148 retry--;
151 while (retry) {
158 retry--;
  /device/lge/mako/power/
power_mako.c 117 int n, cpu, ret, retry = RETRY_TIME_CHANGING_FREQ; local
140 while (retry) {
148 retry--;
151 while (retry) {
158 retry--;
  /external/chromium_org/chrome/browser/chromeos/
customization_wallpaper_downloader_browsertest.cc 55 // Expected minimal wallpaper download retry interval in milliseconds.
118 const int retry = num_attempts() - 1; local
125 base::TimeDelta::FromSecondsD(base_interval * retry * retry))
126 << "Retry too fast. Actual interval " << current_delay.InSecondsF()
128 << " * (retry=" << retry
129 << " * retry)= " << base_interval * retry * retry << " seconds." local
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 431 int retry; local
432 for (retry = 0; retry < 2; ++retry) {
457 if (retry > 0) {
458 printf("mtd: wrote block after %d retries\n", retry);
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
enrollment_screen_handler.cc 446 LOG(WARNING) << "Retry page load";
564 void EnrollmentScreenHandler::ShowError(int message_id, bool retry) {
565 ShowErrorMessage(l10n_util::GetStringUTF8(message_id), retry); local
569 bool retry) {
570 CallJS("showError", message, retry);
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_sess.c 238 unsigned int retry = 0; local
243 (++retry < MAX_SESS_ID_ATTEMPTS));
244 if(retry < MAX_SESS_ID_ATTEMPTS)
  /external/iputils/
rarpd.c 243 int retry = 0; local
246 retry:
250 if (ifl == NULL && !retry) {
251 retry++;
253 goto retry;
266 if (ifa == NULL && retry==0) {
267 retry++;
269 goto retry;
  /external/openssl/ssl/
ssl_sess.c 252 unsigned int retry = 0; local
257 (++retry < MAX_SESS_ID_ATTEMPTS));
258 if(retry < MAX_SESS_ID_ATTEMPTS)
    [all...]
  /bootable/recovery/applypatch/
applypatch.c 812 int retry = 1; local
856 retry = 0;
859 if (retry > 0) {
865 printf("target %ld bytes; free space %ld bytes; retry %d; enough %d\n",
866 (long)target_size, (long)free_space, retry, enough_space);
871 retry = 0;
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 374 int retry = 0; local
393 retry++;
394 if ((retry > 100) && !passed) {
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
request_manager_unittest.cc 405 bool retry = request_manager_->FulfillRequest( local
407 EXPECT_FALSE(retry);
413 bool retry = request_manager_->RejectRequest( local
417 EXPECT_FALSE(retry);
475 bool retry = request_manager_->FulfillRequest( local
477 EXPECT_TRUE(retry);
492 bool retry = request_manager_->FulfillRequest( local
494 EXPECT_FALSE(retry);
545 bool retry = request_manager_->FulfillRequest( local
547 EXPECT_FALSE(retry);
553 bool retry = request_manager_->RejectRequest( local
603 const bool retry = request_manager_->FulfillRequest( local
647 bool retry = request_manager_->RejectRequest( local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 496 UBool retry = FALSE; /* set true if we need to retry, see below */ local
750 sub0Pos=0; /* stops initial padding (and a second retry,
752 retry=TRUE;
760 } while(retry);
    [all...]
  /external/icu/icu4c/source/common/
locdispnames.cpp 496 UBool retry = FALSE; /* set true if we need to retry, see below */ local
750 sub0Pos=0; /* stops initial padding (and a second retry,
752 retry=TRUE;
760 } while(retry);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 338 Retry retry = processResponseHeaders(); local
339 if (retry == Retry.NONE) {
362 throw new HttpRetryException("Cannot retry streamed HTTP body", responseCode);
365 if (retry == Retry.DIFFERENT_CONNECTION) {
405 enum Retry {
412 * Returns the retry action to take for the current response headers. The
416 private Retry processResponseHeaders() throws IOException
    [all...]
  /cts/libs/testserver/src/android/webkit/cts/
TestWebServer.java 552 int retry = 3; local
565 if (--retry == 0) {
CtsTestServer.java 969 int retry = 3; local
    [all...]
  /external/chromium_org/net/test/android/javatests/src/org/chromium/net/test/util/
TestWebServer.java 549 int retry = 3; local
562 if (--retry == 0) {
  /external/ipsec-tools/src/racoon/
pfkey.c 2833 int retry = 0; local
    [all...]
  /bionic/libc/dns/include/
resolv_private.h 150 int retry; /* number of times to retransmit */ member in struct:__res_state
  /external/mdnsresponder/mDNSShared/
dnsextd.c 298 int ntries = 0, retry = 0; local
314 if (!retry) retry = 500000 + random() % 500000;
315 usleep(retry);
316 retry *= 2;
    [all...]
  /bionic/libc/kernel/uapi/linux/
wireless.h 464 struct iw_param retry; member in union:iwreq_data

Completed in 518 milliseconds

1 2