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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
windows-itanium-exceptions.cpp 9 void attempt() { function
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/symver/
symver2.l 2 .*: Error: invalid attempt to declare external version name as default in symbol `foo@@version1'
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
scomm-directive-2.d 4 #error: attempt to re-define symbol
scomm-directive-3.d 4 #error: attempt to re-define symbol
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ClassCacheTest.java 30 TestThreadIsWriting attempt = new TestThreadIsWriting(classCache); local
36 attempt.start();
38 attempt.join(timeToWait, 0);
40 Assert.assertEquals(false, attempt.ready);
69 TestThreadSaveAllClassesToCache attempt = new TestThreadSaveAllClassesToCache(classCache); local
75 attempt.start();
77 attempt.join(timeToWait, 0);
79 Assert.assertEquals(false, attempt.ready);
  /external/valgrind/memcheck/tests/
file_locking.stderr.exp 2 parent: file locking attempt succeeded.
  /test/vts/utils/python/retry/
retry.py 42 continuing via attempt * sleep.
44 will be of length (backoff_factor ^ (attempt - 1)) * sleep,
45 rather than the default behavior of attempt * sleep.
75 attempt = 0
78 for attempt in xrange(max_retry + 1):
79 if attempt and sleep:
81 sleep_time = sleep * backoff_factor ** (attempt - 1)
83 sleep_time = sleep * attempt
101 success_functor(attempt + 1)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
noarm.l 3 [^:]*:13: Error: attempt to use an ARM instruction on a Thumb-only processor -- `nop'
req.s 20 # Attempt to remove the builtin alias for r0.
26 # Now attempt to re-alias foo. There used to be a bug whereby the
29 # second attempt at aliasing foo (to something different than
39 # Check that a second attempt to alias foo, using a mixed case
  /tools/tradefederation/core/src/com/android/tradefed/device/
ReconnectingRecovery.java 45 int attempt = 1; local
47 CLog.i("Trying to reconnect with device " + serial + " / attempt " + attempt);
49 } while (monitor.waitForDeviceOnline() == null && ++attempt <= CONNECTION_ATTEMPTS);
51 String errMsg = "Could not recover device " + serial + " after " + --attempt + " attempts";
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionProcessor.java 47 // Describes information required to attempt to make a phone call
50 // contact in order to process an attempt
176 CallAttemptRecord attempt = null; local
178 attempt = mAttemptRecordIterator.next();
181 attempt.connectionManagerPhoneAccount)) {
184 + "attempt: %s", attempt);
191 if (!attempt.connectionManagerPhoneAccount.equals(attempt.targetPhoneAccount) &&
193 attempt.targetPhoneAccount))
    [all...]
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests/src/com/android/framework/multidexlegacytestservices/test/
ServicesTests.java 59 int attempt = 0; local
66 attempt ++;
67 if (attempt >= maxAttempt) {
  /external/autotest/server/site_tests/firmware_PDConnect/
firmware_PDConnect.py 32 for attempt in xrange(self.CONNECT_ITERATIONS):
33 logging.info('Disconnect/Connect iteration %d', attempt)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/
dot.l 2 .*:[1-9][0-9]*: Warning: attempt to redefine pseudo-op .\.macro. ignored
  /external/vogar/src/vogar/monitor/
HostMonitor.java 53 for (int attempt = 0; true; attempt++) {
68 log.verbose("connection " + attempt + " to localhost:"
  /external/skia/infra/bots/recipe_modules/run/
api.py 126 for attempt in xrange(attempts):
128 if attempt > 0:
129 step_name += ' (attempt %d)' % (attempt + 1)
134 if attempt == attempts - 1:
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
BackgroundWorkerService.java 122 final int attempt = intent.getIntExtra(EXTRA_ATTEMPT, -1); local
123 doBackgroundWork(action, attempt);
138 private void doBackgroundWork(final Action action, final int attempt) {
161 startServiceWithAction(action, attempt + 1);
  /toolchain/binutils/binutils-2.25/ld/
ldfile.c 142 ldfile_try_open_bfd (const char *attempt,
145 entry->the_bfd = bfd_openr (attempt, entry->target);
150 info_msg (_("attempt to open %s failed\n"), attempt);
152 info_msg (_("attempt to open %s succeeded\n"), attempt);
199 ldfile_open_command_file (attempt);
277 attempt, entry->local_sym_name);
289 attempt);
306 attempt, entry->local_sym_name)
    [all...]
  /external/boringssl/src/crypto/bn/
random.c 272 size_t done, todo, attempt; local
307 for (attempt = 0;; attempt++) {
313 SHA512_Update(&sha, &attempt, sizeof(attempt));
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 104 for (int attempt = 0; attempt < 10; ++attempt) {
109 attempt = 0;
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.4.33/
byte-buddy-agent-1.4.33.jar 
  /external/autotest/server/site_tests/firmware_PDPowerSwap/
firmware_PDPowerSwap.py 172 for attempt in xrange(self.POWER_SWAP_ITERATIONS):
173 if attempt & 1:
  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 10 // the syslog client will attempt to reconnect to the server
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 10 // the syslog client will attempt to reconnect to the server
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 303 int attempt = 0; local
305 while ((disks == null || disks.isEmpty()) && attempt++ < 15) {
319 int attempt = 0; local
320 while (attempt++ < 15) {

Completed in 340 milliseconds

1 2 3 4 5 6 7 8 91011>>