HomeSort by relevance Sort by last modified time
    Searched refs:attempts (Results 76 - 100 of 273) sorted by null

1 2 34 5 6 7 8 91011

  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
FastbootDeviceFlasher.java 673 int attempts = 0; local
678 while (attempts < MAX_RETRY_ATTEMPTS) {
684 attempts++;
687 getRunUtil().sleep(RETRY_SLEEP * (attempts - 1)
693 "Could not find version for '%s' after %d retry attempts", imageName, attempts),
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 31 * Maximum number of retransmit attempts before the entry is removed from
47 * The number of failed retry attempts after which the RADIUS server will be
113 * attempts - Number of transmission attempts
115 int attempts; member in struct:radius_msg_list
318 * transmission attempts of interim accounting update messages.
382 if (entry->attempts == 0)
398 if (entry->attempts == 0)
451 /* retransmit; remove entry if too many attempts */
452 entry->attempts++
    [all...]
  /external/skia/infra/bots/recipe_modules/flavor/
gn_android_flavor.py 85 attempts = 1
88 attempts = 3
105 return self.m.run.with_retry(self.m.step, title, attempts,
155 3, # attempts
208 3, # attempts
245 3, # attempts
286 3, # attempts
  /external/skqp/infra/bots/recipe_modules/flavor/
gn_android_flavor.py 85 attempts = 1
88 attempts = 3
105 return self.m.run.with_retry(self.m.step, title, attempts,
155 3, # attempts
208 3, # attempts
245 3, # attempts
286 3, # attempts
  /libcore/ojluni/src/main/java/java/net/
SocksSocketImpl.java 121 for (int attempts = 0; received < len && attempts < 3; attempts++) {
    [all...]
  /platform_testing/libraries/app-helpers/interfaces/tv/src/android/platform/helpers/
AbstractLeanbackAppHelper.java 203 int attempts = 0; local
205 && attempts++ < OPEN_SIDE_PANEL_MAX_ATTEMPTS) {
208 if (attempts == OPEN_SIDE_PANEL_MAX_ATTEMPTS) {
425 * Attempts to return to main activity with getMainActivitySelector()
486 * Attempts to select a given header text three times with the backoff timeout each retry.
  /external/mockito/src/test/java/org/mockitousage/verification/
VerificationAfterDelayTest.java 39 public RetryRule retryRule = RetryRule.attempts(4);
VerificationWithTimeoutTest.java 38 public RetryRule retryRule = RetryRule.attempts(4);
  /external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
saved_model_export_utils.py 297 RuntimeError: if repeated attempts fail to obtain a unique timestamped
300 attempts = 0
301 while attempts < MAX_DIRECTORY_CREATION_ATTEMPTS:
313 attempts += 1
315 format(export_dir, attempts, MAX_DIRECTORY_CREATION_ATTEMPTS))
317 '{} attempts.'.format(MAX_DIRECTORY_CREATION_ATTEMPTS))
    [all...]
  /system/core/libusbhost/
usbhost.c 325 int fd, attempts, writeable = 1; local
334 for (attempts = 0; attempts < MAX_ATTEMPTS; ++attempts) {
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BluetoothCarHfpBaseTest.py 86 self.hf, self.ag, attempts=4, auto_confirm=False):
bt_test_utils.py 471 "Attempts left to determine max advertisements: {}".format(
727 def pair_pri_to_sec(pri_ad, sec_ad, attempts=2, auto_confirm=True):
733 attempts: Number of attempts to try until failure.
743 while curr_attempts < attempts:
759 log.error("pair_pri_to_sec failed to connect after {} attempts".format(
760 str(attempts)))
    [all...]
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarMediaConnectionTest.py 49 self.CT, self.TG, attempts=4, auto_confirm=False):
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wifilogger_event_defs.h 354 u8 attempts; member in struct:__anon52621
364 u8 attempts; member in struct:__anon52622
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageWizardBase.java 212 protected VolumeInfo findFirstVolume(int type, int attempts) {
222 if (--attempts > 0) {
  /prebuilts/go/darwin-x86/src/time/
internal_test.go 74 // doing something involving timerproc itself. Previous failed attempts have
  /prebuilts/go/linux-x86/src/time/
internal_test.go 74 // doing something involving timerproc itself. Previous failed attempts have
  /tools/tradefederation/core/src/com/android/tradefed/util/
GCSBucketUtil.java 61 * Number of attempts for gsutil operations.
129 // N.B. We don't use retry / attempts here, since this doesn't involve any RPC.
464 public void setAttempts(int attempts) {
465 mAttempts = attempts;
  /external/mockito/lib/
byte-buddy-agent-1.7.9.jar 
  /packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
MoreWirelessSettingsTest2.java 659 for (int attempts = 0; attempts < MAX_ADD_NETWORK_BUTTON_ATTEMPTS; ++attempts) {
    [all...]
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.6.5/
byte-buddy-agent-1.6.5.jar 
  /system/tpm/trunks/
resource_manager.cc 155 int attempts = 0; local
156 while (attempts++ < kMaxCommandAttempts) {
458 int attempts = 0; local
459 while (attempts++ < kMaxCommandAttempts) {
804 int attempts = 0; local
805 while (attempts++ < kMaxCommandAttempts) {
  /frameworks/rs/tests/lldb/tests/harness/
util_android.py 130 max_num_attempts: the max number of attempts to repeat the command
442 If the process is still there after 5 attempts reboot the device.
450 attempts and the device then failed to boot
466 after 5 attempts and the device then failed to
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterService.java 559 int attempts = msg.arg1; local
560 if (--attempts >= 0) {
561 sendMessageDelayed(obtainMessage(0, attempts, 0), NEXT_REBIND_ATTEMPT_DELAY_MS);
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
LeanbackLauncherStrategy.java 394 int attempts = 0; local
395 while (attempts++ < maxScrollAttempts) {
447 if (attempts == maxScrollAttempts) {
449 "scrollBackToBeginning: exceeded max attempts: " + maxScrollAttempts);

Completed in 731 milliseconds

1 2 34 5 6 7 8 91011