HomeSort by relevance Sort by last modified time
    Searched full:retries (Results 1 - 25 of 560) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/build/android/pylib/device/
adb_wrapper.py 68 def _AdbCmd(cls, arg_list, timeout, retries, check_error=True):
69 """Runs an adb command with a timeout and retries.
74 retries: Number of retries.
83 # This method runs inside the timeout/retries.
98 return timeout_retry.Run(RunCmd, timeout, retries)
102 def _DeviceAdbCmd(self, arg_list, timeout, retries, check_error=True):
108 retries: Number of retries.
116 ['-s', self._device_serial] + arg_list, timeout, retries,
    [all...]
  /external/chromium_org/build/android/pylib/utils/
timeout_retry.py 5 """A utility to run functions with timeouts and retries."""
14 def Run(func, timeout, retries, args=[], kwargs={}):
15 """Runs the passed function in a separate thread with timeouts and retries.
20 retries: the number of retries.
43 if retries <= 0:
45 retries -= 1
  /external/ppp/pppd/plugins/radius/
buildreq.c 64 int timeout, int retries)
70 data->retries = retries;
196 int retries = rc_conf_int("radius_retries"); local
224 authserver->port[i], timeout, retries);
254 int retries = rc_conf_int("radius_retries"); local
268 authserver->port[i], timeout, retries);
300 int retries = rc_conf_int("radius_retries"); local
337 acctserver->port[i], timeout, retries);
383 int retries = rc_conf_int("radius_retries") local
421 int retries = rc_conf_int("radius_retries"); local
    [all...]
  /external/chromium_org/build/android/pylib/host_driven/
test_server.py 106 retries = 0
107 while retries < 5:
115 time.sleep(retries * 0.1)
116 retries += 1
  /external/smack/src/org/xbill/DNS/
ExtendedResolver.java 23 int retries; field in class:ExtendedResolver.Resolution
56 retries = eres.retries;
188 if (sent[n] < retries)
239 private int retries = 3; field in class:ExtendedResolver
413 /** Sets the number of retries sent to each server per query */
415 setRetries(int retries) {
416 this.retries = retries;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RetryManager.java 57 * <li>3 retries with no randomization value which means its 0:
60 * <li>10 retries with a 500 default randomization value for each and
61 * the 4..10 retries all using 3000 as the delay:
64 * <li>4 retries with a 100 as the default randomization value for the first 2 values and
68 * <li>Infinite number of retries with the first one at 1000, the second at 2000 all
100 * The maximum number of retries to attempt before
107 /** The current number of retries */
136 * @param maxRetryCount is the maximum number of retries
263 * @return {@code true} if the max retries has not been reached. {@code
  /external/chromium_org/build/android/pylib/
cmd_helper.py 108 def GetCmdStatusAndOutputWithTimeoutAndRetries(args, timeout, retries):
109 """Executes a subprocess with a timeout and retries.
115 retries: the number of retries.
120 return timeout_retry.Run(GetCmdStatusAndOutput, timeout, retries, [args])
  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.h 45 // response. This is invoked when the maximum number of retries have been
56 // the input arguments). Setting |max_retries| to -1 implies infinite retries.
  /external/kernel-headers/original/linux/mmc/
mmc.h 54 unsigned int retries; /* max number of retries */ member in struct:mmc_command
  /frameworks/volley/src/com/android/volley/
DefaultRetryPolicy.java 38 /** The default number of retries */
54 * @param maxNumRetries The maximum number of retries.
  /external/chromium_org/chrome/browser/sync/test/integration/
retry_verifier.h 24 // Class to verify retries take place using the exponential backoff algorithm.
retry_verifier.cc 35 // |count| number of retries.
57 // verification which would make sure all retries take place in a reasonable
  /external/chromium_org/third_party/leveldatabase/
README.chromium 23 HANDLE_EINTR macro that retries the call.
  /external/chromium_org/google_apis/drive/
request_sender.h 33 // AuthenticatedRequestInterface and handles retries and authentication.
84 // Clears any authentication token and retries the request, which forces
  /external/chromium_org/tools/xdisplaycheck/
xdisplaycheck.cc 6 // continually retries until it connects or 30 seconds pass. If it fails
78 fprintf(stderr, "Connected after %d retries\n", tries);
  /system/core/libcutils/
ashmem-host.c 40 unsigned int retries = 0; local
63 if (errno == EEXIST && ++retries < 6)
  /development/ndk/platforms/android-3/include/linux/mmc/
mmc.h 50 unsigned int retries; member in struct:mmc_command
  /external/chromium/chrome/browser/chromeos/login/
camera_controller.cc 18 // Maximum number of camera initialization retries.
  /external/chromium_org/chrome/browser/chromeos/login/
oauth2_token_fetcher.h 46 // retries |task| until max retry count is reached.
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_updater.h 34 // It retries to download the policy data periodically when a download fails.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ps2esdi.h 39 #define CONFIG_RT 0x01 /* Retries */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ps2esdi.h 39 #define CONFIG_RT 0x01 /* Retries */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ps2esdi.h 39 #define CONFIG_RT 0x01 /* Retries */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mmc/
mmc.h 50 unsigned int retries; member in struct:mmc_command
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mmc/
mmc.h 50 unsigned int retries; member in struct:mmc_command

Completed in 317 milliseconds

1 2 3 4 5 6 7 8 91011>>