Searched refs:tries (Results 1 - 25 of 85) sorted by relevance

1234

/external/chromium_org/build/android/pylib/utils/
H A Dtimeout_retry_unittest.py17 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[
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DCode.java25 private final Try[] tries; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
35 this.tries = tries;
60 return tries;
28 Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, short[] instructions, Try[] tries, CatchHandler[] catchHandlers) argument
/external/chromium_org/tools/xdisplaycheck/
H A Dxdisplaycheck.cc5 // 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);
/external/eigen/bench/
H A Dbasicbenchmark.cpp21 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) \
H A Dbasicbenchmark.h38 double benchBasic(const MatrixType& mat, int size, int tries) __attribute__((noinline));
41 double benchBasic(const MatrixType& mat, int iterations, int tries) argument
52 for(uint t=0; t<tries; ++t)
H A Dquatmul.cpp22 int tries = 10; local
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
H A Dspmv.cpp11 #define SPMV_BENCH(CODE) BENCH(t,tries,repeats,CODE);
43 int tries = 2; local
63 tries = atoi(argv[i]+1);
76 std::cout << argv[0] << " r<nb rows> c<nb columns> n<non zeros per column> t<nb tries> p<nb repeats>\n";
80 std::cout << "SpMV " << rows << " x " << cols << " with " << nnzPerCol << " non zeros per column. (" << repeats << " repeats, and " << tries << " tries)\n\n"; local
/external/smack/src/org/jivesoftware/smackx/ping/
H A DServerPingTask.java32 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/
H A DDHParametersHelper.java30 int tries = 0;
38 tries++;
53 logger.info("Generated safe primes: " + tries + " tries took " + duration + "ms");
/external/valgrind/main/memcheck/tests/
H A Dsh-mem-random.c233 int tries; local
245 for (tries = 0; tries < 10; tries++) {
254 if (tries >= 10) {
/external/qemu/android/utils/
H A Dfilelock.c116 int tries; local
118 for ( tries = 4; tries > 0; tries-- )
221 int rc, tries;
250 for (tries = 4; tries > 0; tries--)
345 tries++;
/external/chromium_org/build/android/pylib/
H A Dports.py132 def IsHttpServerConnectable(host, port, tries=3, command='GET', path='/',
139 tries: How many times we want to test the connection. The default value is
154 assert tries >= 1
155 for i in xrange(0, tries):
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_util_win.cc162 int tries = 0; local
212 tries++;
226 (tries > 1 ? CREDUI_FLAGS_INCORRECT_PASSWORD : 0));
250 (retval == false && tries < kMaxPasswordRetries));
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py156 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/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dcomplex_rep.S2 # I thought up a lot of corner-cases in the rep code. This tries
/external/valgrind/main/exp-bbv/tests/x86/
H A Dcomplex_rep.S2 # I thought up a lot of corner-cases in the rep code. This tries
/external/chromium_org/build/android/pylib/base/
H A Dtest_dispatcher.py54 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...]
/external/qemu/android/
H A Dqemu-setup.c190 int tries = 3; local
194 } while (s2 < 0 && --tries > 0);
229 int tries = MAX_ANDROID_EMULATORS; local
306 (unsigned)((port - base_port) >> 1) >= (unsigned)tries ) {
308 base_port, base_port + (tries-1)*2 );
317 tries = 1;
320 for ( ; tries > 0; tries--, base_port += 2 ) {
/external/chromium_org/chrome/browser/resources/hotword_helper/
H A Daudio_client.js198 if (this.uiStatus_[command].tries++ < AudioClient.MAX_RETRIES) {
216 this.uiStatus_[command].tries = 0;
334 tries: 0,
339 tries: 0,
344 tries: 0,
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuarticRoot.cpp144 double tries[3][4];
168 nums[index] = quadraticRootsReal(1, q < 0 ? -v : v, z - u, tries[index]);
169 nums[index] += quadraticRootsReal(1, q < 0 ? v : -v, z + u, tries[index] + nums[index]);
173 tries[index][i] -= sub;
179 SkDebugf(" %1.9g", tries[index][idx2]);
/external/skia/experimental/Intersection/
H A DQuarticRoot.cpp144 double tries[3][4];
168 nums[index] = quadraticRootsReal(1, q < 0 ? -v : v, z - u, tries[index]);
169 nums[index] += quadraticRootsReal(1, q < 0 ? v : -v, z + u, tries[index] + nums[index]);
173 tries[index][i] -= sub;
179 SkDebugf(" %1.9g", tries[index][idx2]);
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dsim_unlock.js51 var tries = simInfo.tries;
62 pinMessage = loadTimeData.getStringF('enterPinTriesMessage', tries);
66 'incorrectPinTriesMessage', tries);
81 'incorrectPinTriesMessage', tries);
97 'incorrectPinTriesMessage', tries);
109 $('locked-pin-no-tries-overlay').hidden = false;
113 if (tries && tries >= 0) {
114 var pukMessage = loadTimeData.getStringF('enterPukWarning', tries);
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_perf_analyzer.hh56 for (int i=1; i<BtlConfig::Instance.tries; ++i)
/external/ppp/pppd/plugins/radius/
H A Dbuildreq.c96 int tries = 1; local
114 tries++;
115 if (tries <= 10)
121 if (tries > 10) {
122 error("rc_get_seqnbr: couldn't get lock after %d tries: %s", tries-1, seqfile);
/external/lldb/source/DataFormatters/
H A DNSSet.cpp257 uint32_t tries = 0; local
260 while(tries < num_children)
275 tries++;
400 uint32_t tries = 0; local
403 while(tries < num_children)
418 tries++;

Completed in 3770 milliseconds

1234