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

1 2 3 4 5 6 7 8 9

  /external/syslinux/com32/gpllib/disk/
util.c 27 * Call int 13h, but with retry on failure. Especially floppies need this.
31 int retry = MAX_NB_RETRIES; /* Number of retries */ local
37 while (retry--) {
  /external/testng/src/main/java/org/testng/
IRetryAnalyzer.java 4 * Interface to implement to be able to have a chance to retry a failed test.
17 public boolean retry(ITestResult result); method in interface:IRetryAnalyzer
  /external/testng/src/test/java/test/tmp/
RetryAnalyzer.java 9 public boolean retry(ITestResult result) { method in class:RetryAnalyzer
10 System.out.println("retry()");
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/scp/
css_sds.c 62 int ret, retry = CSS_SCP_READY_10US_RETRIES; local
68 while (retry > 0) {
86 retry--;
  /external/autotest/server/site_tests/network_WiFi_RoamDbus/
network_WiFi_RoamDbus.py 41 def retry(self, func, reason, timeout_seconds=TIMEOUT_SECONDS): member in class:network_WiFi_RoamDbus
43 Retry a function until it returns true or we time out.
85 self.retry(lambda: self.dut_sees_bss(bssid1), 'DUT to see second AP')
  /external/tensorflow/tensorflow/core/platform/posix/
subprocess.h 106 static bool retry(int e) { function in class:tensorflow::SubProcess
  /external/volley/src/main/java/com/android/volley/
RetryPolicy.java 20 * Retry policy for a request.
30 * Returns the current retry count (used for logging).
35 * Prepares for the next retry by applying a backoff to the timeout.
37 * @throws VolleyError In the event that the retry could not be performed (for example if we
40 void retry(VolleyError error) throws VolleyError; method in interface:RetryPolicy
DefaultRetryPolicy.java 20 * Default retry policy for requests.
26 /** The current retry count. */
45 * Constructs a new retry policy using the default timeouts.
52 * Constructs a new retry policy.
72 * Returns the current retry count.
87 * Prepares for the next retry by applying a backoff to the timeout.
91 public void retry(VolleyError error) throws VolleyError { method in class:DefaultRetryPolicy
  /external/autotest/client/common_lib/cros/
retry.py 142 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None, function
144 """Retry calling the decorated function using a delay with jitter.
150 If the retry is done in a child thread, timeout may not be enforced as
151 signal only works in main thread. Therefore, the retry inside a child
155 http://www.saltycrane.com/blog/2009/11/trying-out-retry-decorator-python/
167 @param callback: a function to call before each retry.
205 exception_message = ('retry exception (%s), timeout = %ds' %
  /external/autotest/server/site_tests/network_WiFi_PMKSACaching/
network_WiFi_PMKSACaching.py 40 def retry(self, func, reason, timeout_seconds=TIMEOUT_SECONDS): member in class:network_WiFi_PMKSACaching
42 Retry a function until it returns true or we time out.
87 self.retry(lambda: self.dut_sees_bss(bssid1), 'DUT to see second AP')
99 self.retry(lambda: pinger.simple_ping(
  /external/testng/src/main/java/org/testng/util/
RetryAnalyzerCount.java 16 // Default retry once.
38 public boolean retry(ITestResult result) { method in class:RetryAnalyzerCount
  /frameworks/base/cmds/bootanimation/
BootAnimationUtil.cpp 46 int retry = 0; local
48 retry++;
49 if ((retry % LOG_PER_RETRIES) == 0) {
  /test/vts/harnesses/tradefed/src/com/android/compatibility/common/tradefed/testtype/retry/
VtsRetryFactoryTest.java 16 package com.android.compatibility.common.tradefed.testtype.retry;
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/drivers/pmic/
pmic_wrap_init.c 24 uint32_t retry; local
26 retry = (timeout_us + WAIT_IDLE_POLLING_DELAY_US) /
53 retry--;
54 } while (retry);
57 if (!retry) /* timeout */
70 uint32_t retry; local
72 retry = (timeout_us + READ_POLLING_DELAY_US) / READ_POLLING_DELAY_US;
82 retry--;
83 } while (retry);
85 if (!retry) { /* timeout *
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/drivers/rtc/
rtc.c 13 /* RTC busy status polling interval and retry count */
34 uint64_t retry = RTC_WRTGR_POLLING_CNT; local
40 retry--;
41 } while (retry);
  /external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/
base.py 119 def retry(initial_delay, max_delay, factor=2.0, jitter=0.25, is_retriable=None): function
124 factor: each subsequent retry, the delay is multiplied by this value.
132 and returns true if retry should be applied.
151 """The actual wrapper function that applies the retry logic."""
179 @retry(initial_delay=1.0, max_delay=16.0, is_retriable=_is_retriable)
  /hardware/qcom/bt/msm8909/libbt-vendor/src/
hci_smd.c 60 int retry = 0; local
69 while ((-1 == fd) && (retry < 7)) {
70 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
74 retry++;
  /hardware/qcom/bt/msm8909w_3100/libbt-vendor/src/
hci_smd.c 60 int retry = 0; local
69 while ((-1 == fd) && (retry < 7)) {
70 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
74 retry++;
  /hardware/qcom/bt/msm8960/libbt-vendor/src/
userial_vendor.c 86 int retry = 0; local
93 while ((-1 == fd) && (retry < 7)) {
94 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
98 retry++;
  /hardware/qcom/bt/msm8992/libbt-vendor/src/
hci_smd.c 59 int retry = 0; local
68 while ((-1 == fd) && (retry < 7)) {
69 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
73 retry++;
  /hardware/qcom/bt/msm8996/libbt-vendor/src/
hci_smd.c 63 int retry = 0; local
72 while ((-1 == fd) && (retry < 7)) {
73 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
77 retry++;
  /hardware/qcom/bt/msm8998/libbt-vendor/src/
hci_smd.c 63 int retry = 0; local
72 while ((-1 == fd) && (retry < 7)) {
73 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
77 retry++;
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.c 252 boolean retry; local
254 map = svga_buffer_hw_storage_map(svga, sbuf, transfer->usage, &retry);
255 if (map == NULL && retry) {
262 map = svga_buffer_hw_storage_map(svga, sbuf, transfer->usage, &retry);
  /frameworks/compile/libbcc/lib/
FileBase.cpp 136 unsigned retry = 0; local
176 retry++;
185 // it's retry-able.
188 // decrement the retry counter.
192 // retry.
193 retry++;
197 // without further retry.
201 } while (retry <= pMaxRetry);
  /art/test/916-obsolete-jit/src/
Main.java 123 private static boolean retry = false; field in class:Main
139 // set the retry boolean to true if the stack does not have a JIT-compiled sayHi entry. This can
144 retry = true;
147 retry = false;
163 } while (retry);

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 9