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

1 2 3 4

  /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/smack/src/org/jivesoftware/smack/
ReconnectionManager.java 93 * Holds the current number of reconnection attempts
95 private int attempts = 0;
103 attempts++;
104 if (attempts > 13) {
107 if (attempts > 7) {
  /libcore/luni/src/main/java/java/io/
PipedInputStream.java 225 int attempts = 3; local
231 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
303 int attempts = 3; local
309 if ((attempts-- <= 0) && lastWriter != null && !lastWriter.isAlive()) {
  /external/chromium_org/net/dns/
dns_config_service.cc 21 attempts(2),
37 (attempts == d.attempts) &&
48 attempts = d.attempts;
69 dict->SetInteger("attempts", attempts);
dns_config_service.h 76 // Maximum number of attempts, see res_state.retry.
77 int attempts; member in struct:net::DnsConfig
100 // Attempts to read the configuration. Will run |callback| when succeeded.
120 // Immediately attempts to read the current configuration.
dns_config_service_posix_unittest.cc 87 config->attempts = 7;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer.py 109 attempts = 1
110 while attempts <= retry_attempts:
111 if attempts > 1:
115 wait = int(update_wait_seconds) << (attempts - 1)
121 _log.info('Pull attempt %s out of %s' % (attempts, retry_attempts))
128 attempts += 1
129 _log.error('Exceeded pull attempts')
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Renderer.cpp 118 int attempts = alternateFlags ? ArraySize(extraFlags) : 1; local
120 for (int i = 0; i < attempts; ++i)
153 if (i + 1 < attempts)
  /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
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 407 attempts = 0
409 while not success and (attempts*wait_period) < wait_time:
423 attempts += 1
443 attempts = 0
445 while not boot_complete and (attempts*wait_period) < wait_time:
452 attempts += 1
  /external/chromium_org/chrome/browser/translate/
translate_manager.h 126 // Number of attempts before waiting for a page to be fully reloaded.
127 void set_translate_max_reload_attemps(int attempts) {
128 max_reload_check_attempts_ = attempts;
202 // Max number of attempts before checking if a page has been reloaded.
  /external/chromium_org/remoting/jingle_glue/
chromium_socket_factory_unittest.cc 66 int attempts = 0; local
67 while (last_packet_.empty() && attempts++ < kMaxAttempts) {
  /external/chromium_org/chrome/browser/net/
dns_probe_service.cc 135 system_config.attempts = 1;
148 public_config.attempts = 1;
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 296 int attempts = 1; local
318 attempts++;
329 } while (b == null && attempts < NUMBER_OF_RESIZE_ATTEMPTS);
333 && attempts >= NUMBER_OF_RESIZE_ATTEMPTS) {
334 Log.v(TAG, "getResizedImageData: gave up after too many attempts to resize");
340 attempts = 1; // reset count for second loop
406 Log.v(TAG, "attempt=" + attempts
414 attempts++;
416 } 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/chromium_org/v8/test/cctest/
test-alloc.cc 38 static int attempts = 0; local
39 if (++attempts < 3) return Failure::RetryAfterGC();
  /external/chromium_org/v8/test/webkit/
dfg-branch-logical-not-peephole-around-osr-exit.js 25 "Tests that our attempts to do peephole Branch(LogicalNot) optimization doesn't break OSR exit's ability to recover the value of LogicalNot."
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js 25 "Tests that attempts by the DFG simplification to short-circuit a Phantom to a GetLocal on a variable that is SetLocal'd in the same block, and where the predecessor block(s) make no mention of that variable, do not result in crashes."
dfg-inline-arguments-use-from-all-the-places-broken.js 25 "This attempts to test that inlining preserves basic function.arguments functionality when said functionality is used from inside and outside getters and from inlined code, all at once; but it fails at this and instead finds other bugs particularly in the DFG stack layout machinery."
  /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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
PhotoManager.java 345 * false if the Loader Thread hasn't made any attempts to
493 // Request can go through multiple attempts if the LoaderThread fails to load any
496 if (loaded || request.attempts > 2) {
732 request.attempts++;
900 public int attempts; field in class:PhotoManager.Request
    [all...]
  /external/chromium_org/v8/src/
platform-cygwin.cc 282 for (size_t attempts = 0; base == NULL && attempts < 3; ++attempts) {
287 // After three attempts give up and let the OS find an address to use.
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.cc 39 int attempts = 0; local
40 for (; attempts < 20; attempts++) {
57 if (attempts == 20)

Completed in 803 milliseconds

1 2 3 4