/cts/ |
D | CtsCoverage.mk | 36 cts-test-coverage-report := $(coverage_out)/test-coverage.html 37 cts-system-api-coverage-report := $(coverage_out)/system-api-coverage.html 38 cts-system-api-xml-coverage-report := $(coverage_out)/system-api-coverage.xml 39 cts-verifier-coverage-report := $(coverage_out)/verifier-coverage.html 40 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html 41 cts-combined-xml-coverage-report := $(coverage_out)/combined-coverage.xml 49 $(cts-test-coverage-report): PRIVATE_TEST_CASES := $(COMPATIBILITY_TESTCASES_OUT_cts) 50 $(cts-test-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe) 51 $(cts-test-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe) 52 $(cts-test-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description) [all …]
|
/cts/tools/vm-tests-tf/etc/ |
D | starthosttests | 62 report=$dalviktest/report.html 111 rm -f $report 112 echo $pre_report > $report 174 echo -n "<tr class=\"ok\"><td>Success</td><td>$jtitle</td>" >> $report 175 echo "<td>$jcomment</td><td>$details</td></tr>" >> $report 192 echo "<tr class=\"nok\"><td>Failure</td><td>$jtitle</td><td>" >> $report 193 echo "$jcomment</td><td>$vmres</td></tr>" >> $report 196 echo "<tr class=\"wok\"><td>Failure</td><td>$jtitle</td><td>" >> $report 197 echo "$jcomment</td><td>(No stacktrace, but errors on console)" >> $report 198 echo "<br>$vmres</td></tr>" >> $report [all …]
|
D | starttests | 64 report=$dalviktest/report.html 118 rm -f $report 119 echo $pre_report > $report 193 echo -n "<tr class=\"ok\"><td>Success</td><td>$jtitle</td>" >> $report 194 echo "<td>$jcomment</td><td>$details</td></tr>" >> $report 211 echo "<tr class=\"nok\"><td>Failure</td><td>$jtitle</td><td>" >> $report 212 echo "$jcomment</td><td>$vmres</td></tr>" >> $report 215 echo "<tr class=\"wok\"><td>Failure</td><td>$jtitle</td><td>" >> $report 216 echo "$jcomment</td><td>(No stacktrace, but errors on console)" >> $report 217 echo "<br>$vmres</td></tr>" >> $report [all …]
|
/cts/hostsidetests/statsd/src/android/cts/statsd/metric/ |
D | MetricActivationTests.java | 230 ConfigMetricsReport report = reports.get(0); in testCancellation() local 231 verifyMetrics(report, 4, 0, 1); in testCancellation() 374 ConfigMetricsReport report = reports.get(0); in testRestart() local 375 verifyMetrics(report, 1, 0, 1); in testRestart() 378 report = reports.get(1); in testRestart() 379 verifyMetrics(report, 2, 3, 4); in testRestart() 382 report = reports.get(2); in testRestart() 383 verifyMetrics(report, 2, 2, 3); in testRestart() 506 ConfigMetricsReport report = reports.get(0); in testMultipleActivations() local 507 verifyMetrics(report, 3, 0, 3); in testMultipleActivations() [all …]
|
/cts/tests/simplecpu/src/android/simplecpu/cts/ |
D | SimpleCpuTest.java | 103 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in doTestSort() local 104 report.addValue("array_length", arrayLength, ResultType.NEUTRAL, ResultUnit.NONE); in doTestSort() 105 report.addValues("sorting_time", result, ResultType.LOWER_BETTER, ResultUnit.MS); in doTestSort() 110 … report.setSummary("sorting_time_average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS); in doTestSort() 111 report.submit(getInstrumentation()); in doTestSort() 127 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in doMatrixMultiplication() local 128 report.addValue("matrix_dimension", n, ResultType.NEUTRAL, ResultUnit.NONE); in doMatrixMultiplication() 129 report.addValues("matrix_mutiplication_time", result, ResultType.LOWER_BETTER, in doMatrixMultiplication() 135 report.setSummary("matrix_mutiplication_time_average", stat.mAverage, in doMatrixMultiplication() 137 report.submit(getInstrumentation()); in doMatrixMultiplication()
|
/cts/hostsidetests/statsd/src/android/cts/statsd/uidmap/ |
D | UidMapTests.java | 42 for (ConfigMetricsReport report : reports.getReportsList()) { in testUidSnapshotIncluded() 43 UidMapping uidmap = report.getUidMap(); in testUidSnapshotIncluded() 82 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromInstallation() 83 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromInstallation() 84 if (hasMatchingChange(report.getUidMap(), uid, false)) { in testChangeFromInstallation() 106 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromReinstall() 107 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromReinstall() 108 if (hasMatchingChange(report.getUidMap(), uid, false)) { in testChangeFromReinstall() 128 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromUninstall() 129 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromUninstall() [all …]
|
/cts/tests/filesystem/src/android/filesystem/cts/ |
D | SequentialRWTest.java | 64 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testSingleSequentialWrite() local 65 report.addValue("files", numberOfFiles, ResultType.NEUTRAL, ResultUnit.COUNT); in testSingleSequentialWrite() 79 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in testSingleSequentialWrite() 80 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in testSingleSequentialWrite() 82 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in testSingleSequentialWrite() 84 report.submit(getInstrumentation()); in testSingleSequentialWrite() 111 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testSingleSequentialRead() local 112 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE); in testSingleSequentialRead() 113 report.addValue("write_throughput", in testSingleSequentialRead() 134 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in testSingleSequentialRead() [all …]
|
D | RandomRWTest.java | 54 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomRead() local 55 FileUtil.doRandomReadTest(getContext(), DIR_RANDOM_RD, report, fileSize, in testRandomRead() local 57 report.submit(getInstrumentation()); in testRandomRead() 71 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomUpdate() local 73 FileUtil.doRandomWriteTest(getContext(), DIR_RANDOM_WR, report, fileSize, in testRandomUpdate() local 76 report.submit(getInstrumentation()); in testRandomUpdate()
|
D | FileUtil.java | 272 public static void doRandomReadTest(Context context, String dirName, ReportLog report, in doRandomReadTest() argument 308 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in doRandomReadTest() 310 report.addValues("read_amount", rdAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in doRandomReadTest() 313 report.setSummary("read_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in doRandomReadTest() 326 public static void doRandomWriteTest(Context context, String dirName, ReportLog report, in doRandomWriteTest() argument 360 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in doRandomWriteTest() 361 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in doRandomWriteTest() 364 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in doRandomWriteTest() 388 DeviceReportLog report = new DeviceReportLog(reportName, streamName); in doSequentialUpdateTest() local 389 report.addValue("round", i, ResultType.NEUTRAL, ResultUnit.NONE); in doSequentialUpdateTest() [all …]
|
D | AlmostFullTest.java | 135 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomRead() local 136 FileUtil.doRandomReadTest(getContext(), DIR_RANDOM_RD, report, fileSize, BUFFER_SIZE); in testRandomRead() local 137 report.submit(getInstrumentation()); in testRandomRead() 150 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomUpdate() local 151 FileUtil.doRandomWriteTest(getContext(), DIR_RANDOM_WR, report, fileSize, BUFFER_SIZE); in testRandomUpdate() local 152 report.submit(getInstrumentation()); in testRandomUpdate()
|
/cts/apps/CtsVerifier/jni/audio_loopback/analyzer/ |
D | GlitchAnalyzer.h | 84 std::stringstream report; in analyze() local 85 report << "GlitchAnalyzer ------------------\n"; in analyze() 86 report << LOOPBACK_RESULT_TAG "peak.amplitude = " << std::setw(8) in analyze() 88 report << LOOPBACK_RESULT_TAG "sine.magnitude = " << std::setw(8) in analyze() 90 report << LOOPBACK_RESULT_TAG "rms.noise = " << std::setw(8) in analyze() 92 report << LOOPBACK_RESULT_TAG "signal.to.noise.db = " << std::setw(8) in analyze() 94 report << LOOPBACK_RESULT_TAG "frames.accumulated = " << std::setw(8) in analyze() 96 report << LOOPBACK_RESULT_TAG "sine.period = " << std::setw(8) in analyze() 98 report << LOOPBACK_RESULT_TAG "test.state = " << std::setw(8) in analyze() 100 report << LOOPBACK_RESULT_TAG "frame.count = " << std::setw(8) in analyze() [all …]
|
D | LatencyAnalyzer.h | 198 LatencyReport *report) { in measureLatencyFromPulse() argument 200 report->latencyInFrames = 0; in measureLatencyFromPulse() 201 report->confidence = 0.0; in measureLatencyFromPulse() 233 report->latencyInFrames = peakIndex; in measureLatencyFromPulse() 234 report->confidence = peakCorrelation; in measureLatencyFromPulse() 430 std::stringstream report; in analyze() local 431 report << "PulseLatencyAnalyzer ---------------\n"; in analyze() 432 report << LOOPBACK_RESULT_TAG "test.state = " in analyze() 434 report << LOOPBACK_RESULT_TAG "test.state.name = " in analyze() 436 report << LOOPBACK_RESULT_TAG "background.rms = " in analyze() [all …]
|
/cts/tests/openglperf2/src/android/opengl2/cts/reference/ |
D | GLReferenceBenchmark.java | 68 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testReferenceBenchmark() local 69 report.addValues("set_up_times", setUpTimes, ResultType.LOWER_BETTER, ResultUnit.MS); in testReferenceBenchmark() 70 report.addValue("update_time_average", updateAverage, ResultType.LOWER_BETTER, in testReferenceBenchmark() 72 report.addValue("render_time_average", renderAverage, ResultType.LOWER_BETTER, in testReferenceBenchmark() 76 report.setSummary("total_time_average", totalTime, ResultType.LOWER_BETTER, in testReferenceBenchmark() 78 report.submit(getInstrumentation()); in testReferenceBenchmark()
|
/cts/tests/tvprovider/src/android/tvprovider/cts/ |
D | TvProviderPerfTest.java | 116 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testChannels() local 117 report.addValues("elapsed_time_for_insert", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels() 145 report.addValues("elapsed_time_for_update", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels() 161 report.addValues("elapsed_time_for_query_channels", applyBatchTimes, in testChannels() 181 report.addValues("elapsed_time_for_query_a_channel", applyBatchTimes, in testChannels() 192 report.addValues("elapsed_time_for_delete", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels() 196 report.addValues("average_elapsed_time_for_insert_update_query_channels_query_a_channel_" in testChannels() 198 report.submit(getInstrumentation()); in testChannels() 254 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testPrograms() local 255 report.addValues("elapsed_time_for_insert", applyBatchTimes, ResultType.LOWER_BETTER, in testPrograms() [all …]
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/util/ |
D | BitmapDumper.java | 118 Bundle report = new Bundle(); in dumpBitmaps() local 119 report.putString(KEY_PREFIX + TYPE_IDEAL_RENDERING, idealFile.getAbsolutePath()); in dumpBitmaps() 120 report.putString(KEY_PREFIX + TYPE_TESTED_RENDERING, testedFile.getAbsolutePath()); in dumpBitmaps() 121 report.putString(KEY_PREFIX + TYPE_VISUALIZER_RENDERING, visualizerFile.getAbsolutePath()); in dumpBitmaps() 122 sInstrumentation.sendStatus(INST_STATUS_IN_PROGRESS, report); in dumpBitmaps() 132 Bundle report = new Bundle(); in dumpBitmap() local 133 report.putString(KEY_PREFIX + TYPE_SINGULAR, capture.getAbsolutePath()); in dumpBitmap() 134 sInstrumentation.sendStatus(INST_STATUS_IN_PROGRESS, report); in dumpBitmap()
|
/cts/hostsidetests/statsd/src/android/cts/statsd/metadata/ |
D | MetadataTests.java | 56 StatsdStatsReport report = getStatsdStatsReport(); // Has only been 1 second in testConfigTtl() local 57 LogUtil.CLog.d("got following statsdstats report: " + report.toString()); in testConfigTtl() 60 for (ConfigStats stats: report.getConfigStatsList()) { in testConfigTtl() 77 report = getStatsdStatsReport(); in testConfigTtl() 78 LogUtil.CLog.d("got following statsdstats report: " + report.toString()); in testConfigTtl() 81 for (ConfigStats stats: report.getConfigStatsList()) { in testConfigTtl()
|
/cts/hostsidetests/sample/src/android/sample/cts/ |
D | SampleHostResultTest.java | 141 MetricsReportLog report = new MetricsReportLog( in testTransferTime() local 145 report.addValues("times", result, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime() 146 report.addValue("min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime() 147 report.addValue("max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime() 149 report.setSummary("average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime() 151 report.submit(); in testTransferTime()
|
/cts/suite/audio_quality/lib/src/ |
D | Report.cpp | 58 android::String8 report; in init() local 59 if (report.appendFormat("%s/report.xml", dirName) != 0) { in init() 62 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report); in init() 63 return FileUtil::init(report.string()); in init()
|
/cts/hostsidetests/ui/control/src/android/taskswitching/control/cts/ |
D | TaskSwitchingDeviceTest.java | 68 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testMeasureTaskSwitching() local 69 report.addValues("task_switching_time", results, ResultType.LOWER_BETTER, ResultUnit.MS); in testMeasureTaskSwitching() 71 report.setSummary("task_switching_time_average", stat.mAverage, ResultType.LOWER_BETTER, in testMeasureTaskSwitching() 73 report.submit(getInstrumentation()); in testMeasureTaskSwitching()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | RVCVXCheckAnalyzer.java | 182 AnalyzeReport report = new AnalyzeReport(); in processDataSet() local 203 report.reason = "Unable to to load recorded video."; in processDataSet() 204 return report; in processDataSet() 209 report.reason = "Video too short."; in processDataSet() 210 return report; in processDataSet() 216 report.reason = "Too many invalid frames."; in processDataSet() 217 return report; in processDataSet() 259 report.roll_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 0)); in processDataSet() 260 report.pitch_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 1)); in processDataSet() 261 report.yaw_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 2)); in processDataSet() [all …]
|
/cts/hostsidetests/ui/src/android/ui/cts/ |
D | InstallTimeTest.java | 89 MetricsReportLog report = new MetricsReportLog(mBuild, mAbi.getName(), in testInstallTime() local 108 report.addValues("install_time", result, ResultType.LOWER_BETTER, ResultUnit.MS); in testInstallTime() 113 report.setSummary("install_time_average", stat.mAverage, ResultType.LOWER_BETTER, in testInstallTime() 115 report.submit(); in testInstallTime()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/performance/ |
D | CameraTestInstrumentation.java | 76 ReportLog report; in sendStatus() local 78 report = ReportLog.parse(results.getString(key)); in sendStatus() 84 Metric metric = report.getSummary(); in sendStatus()
|
/cts/tests/tests/security/src/android/security/cts/ |
D | HwRngTest.java | 58 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testDeviceFilePresent() local 60 report.addValue( in testDeviceFilePresent() 65 report.setSummary( in testDeviceFilePresent() 70 report.submit(getInstrumentation()); in testDeviceFilePresent()
|
/cts/libs/input/src/com/android/cts/input/ |
D | HidDevice.java | 120 public void sendHidReport(String report) { in sendHidReport() argument 125 json.put("report", new JSONArray(report)); in sendHidReport() 127 throw new RuntimeException("Could not process HID report: " + report); in sendHidReport()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Fragments/ |
D | BaseUiFragment.java | 105 String report = "Couldn't create test report."; in setupButtons() 107 report = mActivity.getTestReport().getContents(); in setupButtons() 109 Log.e(TAG, report); in setupButtons() 111 resultIntent.putExtra(TestActivity.EXTRA_REPORT, report); in setupButtons()
|