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

1 2 3 4 5 6 7

  /external/chromium_org/build/android/pylib/utils/
timeout_retry_unittest.py 17 def _NeverEnding(tries):
18 tries[0] += 1
23 def _CountTries(tries):
24 tries[0] += 1
36 tries = [0]
38 timeout_retry.Run, lambda: _NeverEnding(tries), 0, 3)
39 self.assertEqual(tries[0], 4)
42 tries = [0]
44 timeout_retry.Run, lambda: _CountTries(tries), 30, 3)
45 self.assertEqual(tries[0], 4
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Code.java 25 private final Try[] tries; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
35 this.tries = tries;
60 return tries;
  /libcore/dex/src/main/java/com/android/dex/
Code.java 25 private final Try[] tries; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
35 this.tries = tries;
60 return tries;
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
preprocessor.pm 68 for (my $tries = 0; !$pid && ($tries < 20); $tries++) {
  /external/chromium_org/tools/xdisplaycheck/
xdisplaycheck.cc 5 // This is a small program that tries to connect to the X server. It
65 int tries; local
66 for (tries = 0; tries < kNumTries; ++tries) {
70 Sleep(10 * tries);
78 fprintf(stderr, "Connected after %d retries\n", tries);
  /device/generic/goldfish/qemu-props/
qemu-props.c 52 int tries = MAX_TRIES; local
59 if (--tries <= 0) {
60 DD("Could not connect after too many tries. Aborting");
  /external/eigen/bench/
basicbenchmark.cpp 21 const int tries = 10; local
26 BOOST_PP_SEQ_ELEM(1,EL),BOOST_PP_SEQ_ELEM(1,EL)), BOOST_PP_SEQ_ELEM(2,EL), tries) \
basicbenchmark.h 38 double benchBasic(const MatrixType& mat, int size, int tries) __attribute__((noinline));
41 double benchBasic(const MatrixType& mat, int iterations, int tries)
52 for(uint t=0; t<tries; ++t)
quatmul.cpp 22 int tries = 10; local
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
  /external/smack/src/org/jivesoftware/smackx/ping/
ServerPingTask.java 32 private int tries = 3; // 3 tries field in class:ServerPingTask
49 for (int i = 0; i < tries; i++) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHParametersHelper.java 30 int tries = 0; local
38 tries++;
53 logger.info("Generated safe primes: " + tries + " tries took " + duration + "ms");
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 47 unsigned int tries; local
66 tries = INT_MAX;
99 } while (--tries);
  /frameworks/av/media/libmedia/
SingleStateQueue.cpp 70 for (int tries = 0; ; ) {
73 if (++tries >= MAX_TRIES) {
87 if (++tries >= MAX_TRIES) {
  /dalvik/libdex/
DexCatch.h 131 const DexTry* tries = dexGetTries(pCode); local
132 u4 start = tries[0].startAddr;
138 u4 end = start + tries[0].insnCount;
144 offset = tries[0].handlerOff;
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.S 2 # I thought up a lot of corner-cases in the rep code. This tries
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.S 2 # I thought up a lot of corner-cases in the rep code. This tries
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/netrom/
netrom.h 70 unsigned int tries; member in struct:nr_parms_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netrom/
netrom.h 70 unsigned int tries; member in struct:nr_parms_struct
  /external/valgrind/main/memcheck/tests/
sh-mem-random.c 233 int tries; local
245 for (tries = 0; tries < 10; tries++) {
254 if (tries >= 10) {
  /external/qemu/android/utils/
filelock.c 116 int tries; local
118 for ( tries = 4; tries > 0; tries-- )
221 int rc, tries;
250 for (tries = 4; tries > 0; tries--)
345 tries++;
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
GeneralSwipeAction.java 68 for (int tries = 0; tries < MAX_TRIES && status != Swiper.Status.SUCCESS; tries++) {
  /cts/tests/tests/security/src/android/security/cts/
ClonedSecureRandomTest.java 150 int tries = 0; local
156 if (tries > 0) {
161 } while (!serviceStopLatch.await(100, TimeUnit.MILLISECONDS) && tries++ < MAX_SHUTDOWN_TRIES);
162 assertTrue("Background process should have stopped already", tries < MAX_SHUTDOWN_TRIES);
  /external/chromium_org/chrome/browser/password_manager/
password_manager_util_win.cc 163 int tries = 0; local
213 tries++;
227 (tries > 1 ? CREDUI_FLAGS_INCORRECT_PASSWORD : 0));
251 (retval == false && tries < kMaxPasswordRetries));
  /external/owasp/sanitizer/tools/
googlecode_upload.py 156 user_name=None, password=None, tries=3):
168 tries: How many attempts to make.
179 while tries > 0:
182 # subsequent tries.
187 # Read password if not loaded from svn config, or on subsequent tries.
201 tries = tries - 1
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 54 def __init__(self, test, tries=0):
59 tries: Number of tries so far.
62 self.tries = tries
185 test.tries += 1
186 if retry and test.tries <= num_retries:
191 logging.warning('Will retry test, try #%s.' % test.tries)
192 test_collection.add(_Test(test=retry, tries=test.tries))
    [all...]

Completed in 507 milliseconds

1 2 3 4 5 6 7