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

1 2 3 4 5 6 7

  /cts/hostsidetests/theme/
generate_images.sh 19 # retry <command> <tries> <message> <delay>
20 function retry { function
21 RETRY="0"
23 if (("$RETRY" >= "$2")); then
36 RETRY=$[$RETRY + 1]
  /frameworks/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 public 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/parameter-framework/tools/xmlGenerator/
hostDomainGenerator.sh 150 # The retry function will execute the provided command nbRety times util success.
151 # It also sleep sleepTime second between each retry.
152 retry() { function
156 local retry=0
159 (($retry < $nbRetry)) || return 1
160 retry=$(($retry + 1))
247 local retry=0
256 (($retry < $nbRetry)) || return 1
257 retry=$(($retry + 1)
    [all...]
  /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++;
  /external/fio/
filelock.c 52 static struct fio_filelock *get_filelock(int trylock, int *retry)
64 *retry = 1;
139 int retry = 0; local
141 ff = get_filelock(trylock, &retry);
150 if (retry) {
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 139 unsigned retry = 0; local
179 retry++;
188 // it's retry-able.
191 // decrement the retry counter.
195 // retry.
196 retry++;
200 // without further retry.
204 } while (retry <= pMaxRetry);
  /external/wpa_supplicant_8/src/wps/
wps_upnp_event.c 52 unsigned int retry; /* which retry */ member in struct:wps_event_
60 * Leaves data, retry count etc. alone.
122 wpa_printf(MSG_DEBUG, "WPS UPnP: Retry event %p for subscription %p",
128 e->retry++;
129 wpa_printf(MSG_DEBUG, "WPS UPnP: Try address %d", e->retry);
131 if (e->retry >= dl_list_len(&s->addr_list)) {
291 if (itry++ == e->retry)
293 if (itry < e->retry)
  /system/core/libprocessgroup/
processgroup.cpp 257 int retry = 40; local
261 if (retry > 0) {
263 --retry;
  /art/compiler/dex/quick/x86/
fp_x86.cc 420 LIR* retry = NewLIR0(kPseudoTargetLabel); local
433 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/asus/fugu/libaudio/
AudioOutput.cpp 201 int retry = 0; local
231 if (retry++ >= MAX_RETRY_COUNT) {
  /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--;
  /external/boringssl/src/ssl/
ssl_sess.c 230 unsigned int retry = 0; local
236 (++retry < kMaxAttempts));
238 if (retry < kMaxAttempts) {
  /hardware/intel/img/psb_video/src/
tng_cmdbuf.c 553 unsigned int retry = 0; local
604 drv_debug_msg(VIDEO_DEBUG_ERROR, "drmCommandWrite returns with %s, retry\n",
606 retry++;
610 if (retry > 0)
612 retry, ret==0?"okay":"failed!", ret);
  /system/core/fastboot/
usb_linux.c 406 int n, retry; local
419 retry = 0;
424 DBG("[ usb read %d ] = %d, fname=%s, Retry %d \n", xfer, n, h->fname, retry);
428 if ( ++retry > MAX_RETRIES ) return -1;
  /bootable/recovery/mtdutils/
mtdutils.c 433 int retry; local
434 for (retry = 0; retry < 2; ++retry) {
459 if (retry > 0) {
460 printf("mtd: wrote block after %d retries\n", retry);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckTestActivity.java 82 int retry = 10; local
84 while(retry-->0) {
  /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;
  /frameworks/av/media/libmediaplayerservice/
Drm.cpp 360 bool retry = false; local
364 retry = DrmSessionManager::Instance()->reclaimSession(getCallingPid());
373 if (retry) {
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
OMXVideoDecoderAVCSecure.cpp 645 int retry = 20; local
646 while (retry--) {
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 438 retry:
447 continue retry; local
450 continue retry; local
  /bootable/recovery/applypatch/
applypatch.c 815 int retry = 1; local
859 retry = 0;
862 if (retry > 0) {
868 printf("target %ld bytes; free space %ld bytes; retry %d; enough %d\n",
869 (long)target_size, (long)free_space, retry, enough_space);
874 retry = 0;
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 378 int retry = 0; local
397 retry++;
398 if ((retry > 100) && !passed) {

Completed in 1234 milliseconds

1 2 3 4 5 6 7