/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | ModuleListenerTest.java | 143 for (int attempt = 0; attempt < maxRunLimit; attempt++) { in testhasRunCrashedAtAttempt() 144 mListener.testRunStarted("run1", 0, attempt); in testhasRunCrashedAtAttempt() 145 if (attempt < clearRun1FailureAtAttempt) { in testhasRunCrashedAtAttempt() 149 mListener.testRunStarted("run2", 0, attempt); in testhasRunCrashedAtAttempt() 150 if (attempt < clearRun2FailureAtAttempt) { in testhasRunCrashedAtAttempt() 157 for (int attempt = 0; attempt < finalRunFailureAtAttempt; attempt++) { in testhasRunCrashedAtAttempt() 158 assertTrue(mListener.hasRunCrashedAtAttempt(attempt)); in testhasRunCrashedAtAttempt() 160 for (int attempt = finalRunFailureAtAttempt; attempt < maxRunLimit; attempt++) { in testhasRunCrashedAtAttempt() 161 assertFalse(mListener.hasRunCrashedAtAttempt(attempt)); in testhasRunCrashedAtAttempt()
|
D | ModuleDefinitionTest.java | 1420 for (int attempt = 0; attempt < 3; attempt++) { in testMultiRun_multiAttempts() 1424 EasyMock.eq(attempt), in testMultiRun_multiAttempts() 1506 for (int attempt = 0; attempt < 3; attempt++) { in testMultiRun_multiAttempts_filter() 1507 if (attempt == 0) { in testMultiRun_multiAttempts_filter() 1511 EasyMock.eq(attempt), in testMultiRun_multiAttempts_filter() 1517 EasyMock.eq(attempt), in testMultiRun_multiAttempts_filter() 1521 if (attempt < 1) { in testMultiRun_multiAttempts_filter() 1536 if (attempt < 1) { in testMultiRun_multiAttempts_filter() 1546 if (attempt < 1) { in testMultiRun_multiAttempts_filter() 1561 if (attempt < 1) { in testMultiRun_multiAttempts_filter()
|
D | GranularRetriableTestWrapperTest.java | 98 public void addTestBecomePass(TestDescription testCase, int attempt) { in addTestBecomePass() argument 99 mBecomePass.put(testCase, attempt); in addTestBecomePass()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | TestResult.java | 186 for (TestResult attempt : results) { in merge() 187 mergedResult.mProtoMetrics.putAll(attempt.getProtoMetrics()); in merge() 188 mergedResult.mMetrics.putAll(attempt.getMetrics()); in merge() 189 mergedResult.mLoggedFiles.putAll(attempt.getLoggedFiles()); in merge() 190 earliestStartTime = Math.min(attempt.getStartTime(), earliestStartTime); in merge() 191 latestEndTime = Math.max(attempt.getEndTime(), latestEndTime); in merge() 192 switch (attempt.getStatus()) { in merge() 198 if (attempt.getStackTrace() != null) { in merge() 199 errorMsg.add(attempt.getStackTrace()); in merge() 208 if (attempt.getStackTrace() != null) { in merge() [all …]
|
D | CollectingTestListener.java | 491 public TestRunResult getTestRunAtAttempt(String testRunName, int attempt) { in getTestRunAtAttempt() argument 493 if (results == null || attempt < 0 || attempt >= results.size()) { in getTestRunAtAttempt() 497 return results.get(attempt); in getTestRunAtAttempt()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | ReconnectingRecovery.java | 45 int attempt = 1; in recoverDevice() local 47 CLog.i("Trying to reconnect with device " + serial + " / attempt " + attempt); in recoverDevice() 49 } while (monitor.waitForDeviceOnline() == null && ++attempt <= CONNECTION_ATTEMPTS); in recoverDevice() 51 String errMsg = "Could not recover device " + serial + " after " + --attempt + " attempts"; in recoverDevice()
|
D | TestDevice.java | 1710 int attempt = 0; in dumpAndPullHeap() local 1712 while (!doesFileExist(devicePath) && attempt < 3) { in dumpAndPullHeap() 1714 attempt++; in dumpAndPullHeap()
|
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/ |
D | ManagedRemoteDevice.java | 145 for (int attempt = 0; attempt < getOptions().getGceMaxAttempt(); attempt++) { in launchGce() 152 attempt + 1, getOptions().getGceMaxAttempt(), tse); in launchGce()
|
D | RemoteAndroidVirtualDevice.java | 250 for (int attempt = 0; attempt < getOptions().getGceMaxAttempt(); attempt++) { in launchGce() 257 attempt + 1, getOptions().getGceMaxAttempt(), tse); in launchGce()
|
/tools/test/connectivity/acts/tests/google/experimental/ |
D | BluetoothReconnectTest.py | 133 for attempt in range(RECONNECTION_ATTEMPTS): 134 self.log.info("Reconnection attempt {}".format(attempt + 1)) 143 'reconnect_attempt': attempt + 1}
|
D | BluetoothPairAndConnectTest.py | 128 for attempt in range(PAIR_CONNECT_ATTEMPTS): 129 self.log.info('Pair and connection attempt {}'.format(attempt + 1)) 139 'pair_and_connect_attempt': attempt + 1}
|
/tools/tradefederation/core/tests/src/com/android/tradefed/result/ |
D | CollectingTestListenerTest.java | 370 String runName, String testName, String metricValue, int attempt) { in injectTestRun() argument 371 return injectTestRun(runName, testName, metricValue, attempt, false); in injectTestRun() 380 String runName, String testName, String metricValue, int attempt, boolean failtest) { in injectTestRun() argument 386 mCollectingTestListener.testRunStarted(runName, 1, attempt); in injectTestRun()
|
D | JsonHttpTestResultReporterTest.java | 102 int attempt, in injectTestRun() argument 109 target.testRunStarted(runName, 1, attempt); in injectTestRun()
|
/tools/tradefederation/core/proto/ |
D | test_record.proto | 65 // The attempt number of a target if the target ran several times. First 66 // attempt is 0 (Default value).
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiChaosTest.py | 263 for attempt in range(5): 277 "attempt." % (ssid, attempt))
|
/tools/tradefederation/core/src/com/android/tradefed/invoker/ |
D | RemoteInvocationExecution.java | 194 int attempt = 0; in runTests() local 196 while (!result && attempt < MAX_PUSH_TF_ATTEMPTS) { in runTests() 206 attempt++; in runTests()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/ |
D | ModuleDefinition.java | 624 Integer attempt, in reportFinalResults() argument 628 if (attempt != null) { in reportFinalResults() 629 listener.testRunStarted(getId(), totalExpectedTests, attempt, mStartTestTime); in reportFinalResults() local
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | apollo_lib.py | 1383 for attempt in range(tries_before_recovery): 1396 'left : %d' % (tries_before_recovery - attempt - 1)) 1397 if attempt + 1 >= tries_before_recovery:
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | SubprocessEventHelper.java | 76 public TestRunStartedEventInfo(String runName, int testCount, int attempt) { in TestRunStartedEventInfo() argument 79 mAttempt = attempt; in TestRunStartedEventInfo()
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_lineage.txt | 86 tool will attempt to load the key using the KeyStore 88 and attempt to load the key using that password.
|
D | help_rotate.txt | 89 tool will attempt to load the key using the KeyStore 91 and attempt to load the key using that password.
|
D | help_sign.txt | 137 tool will attempt to load the key using the KeyStore 139 and attempt to load the key using that password.
|
/tools/repohooks/tools/ |
D | spelling.txt | 155 atempt||attempt
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/google/protobuf/ |
D | descriptor.proto | 301 // throws an exception whenever an attempt is made to assign a non-UTF-8
|
/tools/external/fat32lib/ |
D | NOTICE | 112 …tribute the Library except as expressly provided under this License. Any attempt otherwise to copy…
|