Home
last modified time | relevance | path

Searched refs:reportLog (Results 1 – 11 of 11) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestResult.java57 ReportLog reportLog) { in setPassedResult() argument
59 testDetails, reportLog, null /*history*/)); in setPassedResult()
64 ReportLog reportLog, TestResultHistoryCollection historyCollection) { in setPassedResult() argument
66 testDetails, reportLog, historyCollection)); in setPassedResult()
76 ReportLog reportLog) { in setFailedResult() argument
78 testDetails, reportLog, null /*history*/)); in setFailedResult()
83 ReportLog reportLog, TestResultHistoryCollection historyCollection) { in setFailedResult() argument
85 testDetails, reportLog, historyCollection)); in setFailedResult()
89 … String testDetails, ReportLog reportLog, TestResultHistoryCollection historyCollection) { in createResult() argument
91 addResultData(data, testResult, testName, testDetails, reportLog, historyCollection); in createResult()
[all …]
DPassFailButtons.java115 private final ReportLog reportLog; field in PassFailButtons.Activity
119 this.reportLog = new CtsVerifierReportLog(); in Activity()
179 public ReportLog getReportLog() { return reportLog; } in getReportLog()
187 private final ReportLog reportLog; field in PassFailButtons.ListActivity
191 this.reportLog = new CtsVerifierReportLog(); in ListActivity()
233 public ReportLog getReportLog() { return reportLog; } in getReportLog()
242 private final ReportLog reportLog; field in PassFailButtons.TestListActivity
245 this.reportLog = new CtsVerifierReportLog(); in TestListActivity()
286 public ReportLog getReportLog() { return reportLog; } in getReportLog()
438 String testDetails, ReportLog reportLog, TestResultHistoryCollection historyCollection, in setTestResultAndFinish() argument
[all …]
DTestResultsReport.java143 ReportLog reportLog = mAdapter.getReportLog(i); in generateResult() local
144 if (reportLog != null) { in generateResult()
145 currentTestResult.setReportLog(reportLog); in generateResult()
DTestListAdapter.java280 ReportLog reportLog = (ReportLog) deserialize(cursor.getBlob(4)); in getRefreshResults() local
285 reportLogs.put(testName, reportLog); in getRefreshResults()
319 ReportLog reportLog, in SetTestResultTask() argument
324 mReportLog = reportLog; in SetTestResultTask()
DTestResultsProvider.java107 String testDetails, ReportLog reportLog, TestResultHistoryCollection historyCollection) { in setTestResult() argument
112 values.put(TestResultsProvider.COLUMN_TEST_METRICS, serialize(reportLog)); in setTestResult()
/cts/tests/sample/src/android/sample/cts/
DSampleDeviceReportLogTest.java70 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testMultiplication() local
71 reportLog.addValue(EXPECTED_PRODUCT_TAG, 1.0 * MULTIPLICATION_RESULT, ResultType.NEUTRAL, in testMultiplication()
73 reportLog.addValue(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE); in testMultiplication()
74reportLog.setSummary(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE); in testMultiplication()
75 reportLog.submit(getInstrumentation()); in testMultiplication()
119 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, streamName); in countHelper() local
120 reportLog.addValue(START_TAG, 1.0 * start, ResultType.NEUTRAL, ResultUnit.NONE); in countHelper()
121 reportLog.addValue(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE); in countHelper()
122 reportLog.setSummary(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE); in countHelper()
123 reportLog.submit(getInstrumentation()); in countHelper()
DSampleDeviceResultTest.java85 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testSort() local
87 reportLog.addValues("times", result, ResultType.LOWER_BETTER, ResultUnit.MS); in testSort()
88 reportLog.addValue("min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS); in testSort()
89 reportLog.addValue("max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS); in testSort()
91 reportLog.setSummary("average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS); in testSort()
93 reportLog.submit(getInstrumentation()); in testSort()
/cts/tests/camera/src/android/hardware/cts/
DLegacyCameraPerformanceTest.java67 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, in testLegacyApiPerformance() local
69 reportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE); in testLegacyApiPerformance()
168 reportLog.addValues("camera_open_time", cameraOpenTimes, ResultType.LOWER_BETTER, in testLegacyApiPerformance()
170 reportLog.addValues("camera_start_preview_time", startPreviewTimes, in testLegacyApiPerformance()
173 reportLog.addValues("camera_autofocus_time", cameraAutoFocusTimes, in testLegacyApiPerformance()
176 reportLog.addValues("camera_stop_preview", stopPreviewTimes, in testLegacyApiPerformance()
178 reportLog.addValues("camera_close_time", cameraCloseTimes, in testLegacyApiPerformance()
180 reportLog.addValues("camera_takepicture_time", cameraTakePictureTimes, in testLegacyApiPerformance()
183 reportLog.submit(mInstrumentation); in testLegacyApiPerformance()
187 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, in testLegacyApiPerformance() local
[all …]
/cts/tests/tests/keystore/src/android/keystore/cts/
DPerformanceTestBase.java62 DeviceReportLog reportLog = new DeviceReportLog(REPORT_LOG_NAME, "performance_test"); in measure() local
65 reportLog.addValue( in measure()
70 reportLog.addValue( in measure()
72 reportLog.addValue( in measure()
74 reportLog.addValue( in measure()
76 reportLog.addValue( in measure()
78 reportLog.addValue( in measure()
83 reportLog.addValue( in measure()
85 reportLog.addValue( in measure()
90 reportLog.addValue( in measure()
[all …]
/cts/tests/tests/wifi/src/android/net/wifi/rtt/cts/
DWifiRttTest.java146 DeviceReportLog reportLog = new DeviceReportLog(TAG, "testRangingToTestAp"); in testRangingToTestAp() local
147 reportLog.addValues("status_codes", statuses, ResultType.NEUTRAL, ResultUnit.NONE); in testRangingToTestAp()
148 reportLog.addValues("distance_mm", Arrays.copyOf(distanceMms, numGoodResults), in testRangingToTestAp()
150 reportLog.addValues("distance_stddev_mm", Arrays.copyOf(distanceStdDevMms, numGoodResults), in testRangingToTestAp()
152 reportLog.addValues("rssi_dbm", Arrays.copyOf(rssis, numGoodResults), ResultType.NEUTRAL, in testRangingToTestAp()
154 reportLog.addValues("num_attempted", Arrays.copyOf(numAttempted, numGoodResults), in testRangingToTestAp()
156 reportLog.addValues("num_successful", Arrays.copyOf(numSuccessful, numGoodResults), in testRangingToTestAp()
158 reportLog.addValues("timestamps", Arrays.copyOf(timestampsMs, numGoodResults), in testRangingToTestAp()
160 reportLog.submit(); in testRangingToTestAp()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sample/
DSampleTestActivity.java86 ReportLog reportLog = new PassFailButtons.CtsVerifierReportLog(); in recordMetricsExample() local
87 reportLog.setSummary("Sample Summary", 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE); in recordMetricsExample()
88 reportLog.addValues("Sample Values", metricValues, ResultType.NEUTRAL, ResultUnit.FPS); in recordMetricsExample()
89 TestResult.setPassedResult(this, "manualSample", "manualDetails", reportLog); in recordMetricsExample()