HomeSort by relevance Sort by last modified time
    Searched refs:attempts (Results 1 - 25 of 49) sorted by null

1 2

  /system/extras/tests/sdcard/
sysutil.cpp 97 int attempts = 0; local
101 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
124 ++attempts;
163 int attempts = 0; local
165 while (size > 0 && !error && attempts < kMaxAttempts)
182 ++attempts;
449 int attempts = 0; local
451 while (size > 0 && !error && attempts < kMaxAttempts)
468 ++attempts;
480 attempts = 0
524 int attempts; local
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
scanner.rb 124 attempts = 0
128 attempts += 1
130 puts "Sequential found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
131 seq_iterations << attempts
137 attempts = 0
141 attempts += 1
143 puts "Combine found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
144 combine_iterations << attempts
    [all...]
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/logic/stop/
AndroidEmulatorStopper.java 92 int attempts = 0; local
94 while (!locked && (attempts < MAX_LOCK_ATTEMPTS))
105 attempts++;
  /libcore/luni/src/main/java/java/io/
PipedInputStream.java 224 int attempts = 3; local
230 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
303 int attempts = 3; local
309 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
  /ndk/sources/host-tools/sed-4.2.1/lib/
tempname.c 222 unsigned int attempts = TMP_MAX; local
224 unsigned int attempts = ATTEMPTS_MIN; local
249 for (count = 0; count < attempts; value += 7777, ++count)
  /development/testrunner/
adb_interface.py 402 attempts = 0
404 while not success and (attempts*wait_period) < wait_time:
418 attempts += 1
438 attempts = 0
440 while not boot_complete and (attempts*wait_period) < wait_time:
447 attempts += 1
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 283 int attempts = 1; local
305 attempts++;
316 } while (b == null && attempts < NUMBER_OF_RESIZE_ATTEMPTS);
320 && attempts >= NUMBER_OF_RESIZE_ATTEMPTS) {
321 Log.v(TAG, "getResizedImageData: gave up after too many attempts to resize");
327 attempts = 1; // reset count for second loop
379 Log.v(TAG, "attempt=" + attempts
387 attempts++;
389 } while (resultTooBig && attempts < NUMBER_OF_RESIZE_ATTEMPTS);
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 580 for (int attempts = 0; attempts < size * (size - 1); attempts++) {
595 for (int attempts = 0; attempts < size * (size - 1); attempts++) {
609 for (int attempts = 0; attempts < 5000; attempts++) {
641 for (int attempts = 0; attempts < 5000; attempts++)
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 38 static int attempts = 0; local
39 if (++attempts < 3) return Failure::RetryAfterGC();
  /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
332 if (entry->attempts == 0)
340 if (entry->attempts == 0)
348 /* retransmit; remove entry if too many attempts */
349 entry->attempts++;
363 if (entry->attempts >= RADIUS_CLIENT_MAX_RETRIES)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_client.c 25 #define RADIUS_CLIENT_MAX_RETRIES 10 /* maximum number of retransmit attempts
32 * many failed retry attempts */
53 int attempts; member in struct:radius_msg_list
173 if (entry->attempts == 0)
181 if (entry->attempts == 0)
189 /* retransmit; remove entry if too many attempts */
190 entry->attempts++;
203 if (entry->attempts >= RADIUS_CLIENT_MAX_RETRIES) {
205 "failed retransmit attempts\n");
246 if (entry->attempts > RADIUS_CLIENT_NUM_FAILOVER)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
LockPatternKeyguardView.java 385 // that requests device wipe after N attempts. Once we get below the grace
391 // Too many attempts. The device will be wiped shortly.
392 Slog.i(TAG, "Too many unlock attempts; device will be wiped!");
521 // notification for orientation changed, layout() and switching resources. This code attempts
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 117 private TextView attempts; field in class:RadioInfo
279 attempts = (TextView) findViewById(R.id.attempts);
661 attempts.setText(s);
    [all...]
  /external/ppp/pppd/
auth.c     [all...]