/tools/tradefederation/core/javatests/com/android/tradefed/util/ |
D | HprofAllocSiteParserTest.java | 70 Map<String, String> results = mParser.parse(f); in testParse() local 85 Map<String, String> results = mParser.parse(f); in testParse_invalidContent() local 95 Map<String, String> results = mParser.parse(null); in testParse_noFile() local 103 Map<String, String> results = mParser.parse(new File("thisdoesnotexistsatall")); in testParse_fileDoesNotExists() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/build/content/ |
D | ContentAnalysisResultsTest.java | 31 ContentAnalysisResults results = in testNoModification() local 39 ContentAnalysisResults results = new ContentAnalysisResults().addModifiedFile(); in testModifiedFiles() local 46 ContentAnalysisResults results = new ContentAnalysisResults().addModifiedModule(); in testModifiedModules() local
|
D | TestContentAnalyzerTest.java | 82 ContentAnalysisResults results = analyzer.evaluate(); in testAnalyzeTestsDir_withChange() local 112 ContentAnalysisResults results = analyzer.evaluate(); in testAnalyzeTestsDir_noChange() local 148 ContentAnalysisResults results = analyzer.evaluate(); in testAnalyzeXtsSuite_withChange() local 184 ContentAnalysisResults results = analyzer.evaluate(); in testAnalyzeXtsSuite_withDiscovery() local 219 ContentAnalysisResults results = analyzer.evaluate(); in testAnalyzeXtsSuite_noChange() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/util/executor/ |
D | ParallelDeviceExecutorTest.java | 70 List<Boolean> results = mExecutor.invokeAll(callableTasks, 1, TimeUnit.SECONDS); in testSimpleExecution() local 90 List<Boolean> results = mExecutor.invokeAll(callableTasks, 1, TimeUnit.SECONDS); in testExecution_errors() local 109 List<Boolean> results = mExecutor.invokeAll(callableTasks, 1L, TimeUnit.MILLISECONDS); in testExecution_timeout() local
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | CountingTestResultListener.java | 41 int[] results = new int[TestStatus.values().length]; in getResultCounts() local 59 int[] results = getResultCounts(); in hasFailedTests() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/ |
D | ModuleListenerTest.java | 186 List<TestRunResult> results = mListener.getMergedTestRunResults(); in testRetryInvalid() local 209 List<TestRunResult> results = mListener.getMergedTestRunResults(); in testRecordTestMappingSourcesIntoMetrics() local 221 private boolean hasRunCrashed(List<TestRunResult> results) { in hasRunCrashed()
|
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/ |
D | GoogleBenchmarkResultParserTest.java | 103 Map<String, String> results = resultParser.parse(cmd_result); in testParseSimpleFile() local 164 HashMap<String, Metric> results = capture.getAllValues().get(0); in testParseSimpleFile_twoTests() local 236 Map<String, String> results = resultParser.parseJsonToMap(test); in testJsonParse() local 263 HashMap<String, Metric> results = capture.getValue(); in testParseSimpleFile_withWarning() local 291 HashMap<String, Metric> results = capture.getValue(); in testParse_ignore() local
|
/tools/test/connectivity/acts_tests/tests/google/wifi/aware/performance/ |
D | ThroughputTest.py | 50 def run_iperf_single_ndp_aware_only(self, use_ib, results): argument 123 def run_iperf_max_ndp_aware_only(self, results): argument 250 def run_iperf_max_ndi_aware_only(self, sec_configs, results): argument
|
D | LatencyTest.py | 66 def run_synchronization_latency(self, results, do_unsolicited_passive, argument 158 def run_discovery_latency(self, results, do_unsolicited_passive, dw_24ghz, argument 246 def run_message_latency(self, results, dw_24ghz, dw_5ghz, num_iterations, instant_mode=None): argument 334 def run_ndp_oob_latency(self, results, dw_24ghz, dw_5ghz, num_iterations): argument 446 def run_end_to_end_latency(self, results, dw_24ghz, dw_5ghz, argument
|
/tools/tradefederation/core/javatests/com/android/tradefed/config/ |
D | SandboxConfigurationFactoryTest.java | 108 CommandResult results = new CommandResult(); in testCreateConfigurationFromArgs() local 133 CommandResult results = new CommandResult(); in testCreateConfigurationFromArgs_fail() local
|
/tools/tradefederation/core/src/com/android/tradefed/result/suite/ |
D | SuiteResultReporter.java | 107 private List<TestRunResult> extractModuleCheckers(Collection<TestRunResult> results) { in extractModuleCheckers() 125 Collection<TestRunResult> results = getMergedTestRunResults(); in invocationEnded() local 223 private void printModuleTestTime(Collection<TestRunResult> results) { in printModuleTestTime() 255 private void printTopSlowModules(Collection<TestRunResult> results) { in printTopSlowModules()
|
/tools/tradefederation/core/src/com/android/tradefed/build/content/ |
D | TestContentAnalyzer.java | 121 ContentAnalysisResults results; in evaluate() local 169 ContentAnalysisResults results = new ContentAnalysisResults(); in mapDiffsToModule() local 284 ContentAnalysisResults results = new ContentAnalysisResults(); in fileAnalysis() local 310 ContentAnalysisResults results = new ContentAnalysisResults(); in workdirAnalysis() local
|
D | ImageContentAnalyzer.java | 83 ContentAnalysisResults results = new ContentAnalysisResults(); in evaluate() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/ |
D | ModulePusherTest.java | 215 Path[] results = mPusher.getPreloadPaths(mMockDevice, files, SPLIT_APK_PACKAGE_NAME, 30); in testGetPreLoadPathsOnSplitApk() local 226 Path[] results = mPusher.getPreloadPaths(mMockDevice, files, APEX_PACKAGE_NAME, 30); in testGetPreLoadPathsOnApex() local 239 Path[] results = mPusher.getPreloadPaths(mMockDevice, files, APEX_PACKAGE_NAME, 29); in testGetPreLoadPathsOnQReturnDefault() local 262 Path[] results = mPusher.getPreloadPaths(mMockDevice, files, APK_PACKAGE_NAME, 30); in testGetPreLoadPathsOnApk() local 279 Path[] results = mPusher.getPreloadPaths(mMockDevice, files, APEX_PACKAGE_NAME, 31); in testGetPreLoadPathsOverridesApexDecompressedPath() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | WifiCommandUtilTest.java | 44 List<WifiCommandUtil.ScanResult> results = WifiCommandUtil.parseScanResults(output); in testParseScanResults() local
|
/tools/tradefederation/core/javatests/com/android/tradefed/util/proto/ |
D | TfMetricProtoUtilTest.java | 74 Map<String, String> results = TfMetricProtoUtil.compatibleConvert(metrics); in testCompatibleConvert() local
|
/tools/tradefederation/core/src/com/android/tradefed/util/executor/ |
D | ParallelDeviceExecutor.java | 55 List<V> results = new ArrayList<>(); in invokeAll() local
|
/tools/tradefederation/contrib/src/com/android/performance/ |
D | InodeopBenchmarkTest.java | 86 List<String> results = runInodeopBenchmark(); in run() local 93 List<String> results = new ArrayList<String>(); in runInodeopBenchmark() local
|
D | DDBenchmarkTest.java | 101 List<String> results = runDDBenchmark(); in run() local 127 List<String> results = new ArrayList<String>(); in runDDBenchmark() local
|
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/token/ |
D | TelephonyTokenProvider.java | 118 List<String> results = new ArrayList<>(); in getOptionalDualSimProperty() local
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/loggers/protos/ |
D | telephony_metric.proto | 39 repeated TelephonyVoiceTestResult results = 1; field
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | HprofAllocSiteParser.java | 52 Map<String, String> results = new HashMap<>(); in parse() local
|
/tools/tradefederation/contrib/src/com/android/media/tests/ |
D | AdbScreenrecordTest.java | 161 private Map<String, String> runTest(Map<String, String> results, final long timeout) in runTest() argument 252 String deviceFileName, Map<String, String> results) in extractDurationAndBitrateFromVideoFileUsingAvprobe() argument 303 private boolean extractVideoDataFromAdbOutput(String adbOutput, Map<String, String> results) in extractVideoDataFromAdbOutput() argument
|
/tools/tradefederation/core/javatests/com/android/tradefed/result/ |
D | CollectingTestListenerTest.java | 189 List<TestRunResult> results = mCollectingTestListener.getTestRunAttempts("run"); in testRun_invalidAttempts() local 285 List<TestRunResult> results = listener.getMergedTestRunResults(); in testEarlyFailure() local
|
/tools/asuite/atest/ |
D | cli_translator.py | 369 def _confirm_running(self, results): argument 382 def _print_fuzzy_searching_results(self, results): argument
|