/cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/ |
D | TimestampClockSourceVerificationTest.java | 72 long ts = getValidTimestamp(); in testVerify_pass() local 73 long[] timestamps = {ts-4000000, ts-3000000, ts-2000000, ts-1000000, ts}; in testVerify_pass() 87 long ts = getInvalidTimestamp(); in testVerify_fail() local 88 long[] timestamps = {ts-4000000, ts-3000000, ts-2000000, ts-1000000, ts}; in testVerify_fail() 101 long ts = getValidTimestamp(); in testVerify_jitter_pass() local 102 long[] timestamps = {ts-3900000, ts-2950000, ts-2050000, ts-1000000, ts-50000}; in testVerify_jitter_pass() 115 long ts = getInvalidTimestamp(); in testVerify_jitter_fail() local 116 long[] timestamps = {ts-3900000, ts-2950000, ts-2050000, ts-1000000, ts-50000}; in testVerify_jitter_fail() 129 long ts = getValidTimestamp(); in testVerify_missing_events_pass() local 130 long[] timestamps = {ts-4000000, ts-3000000, ts-1000000, ts}; in testVerify_missing_events_pass() [all …]
|
/cts/tests/app/app/src/android/app/stubs/ |
D | LaunchpadTabActivity.java | 37 final TabHost.TabSpec ts = th.newTabSpec("1"); in onCreate() local 38 ts.setIndicator("One"); in onCreate() 39 ts.setContent(tabIntent); in onCreate() 40 th.addTab(ts); in onCreate()
|
/cts/tests/tests/security/jni/ |
D | android_security_cts_EncryptionTest.cpp | 37 struct timespec ts; in ns() local 38 clock_gettime(CLOCK_MONOTONIC, &ts); in ns() 39 return (uint64_t)ts.tv_sec * 1000000000 + ts.tv_nsec; in ns()
|
D | android_security_cts_cve_2019_2213_Test.c | 769 static inline void ns_to_timespec(u64 t, struct timespec *ts) { in ns_to_timespec() argument 771 ts->tv_sec = t / k; in ns_to_timespec() 772 ts->tv_nsec = t % k; in ns_to_timespec()
|
/cts/tests/tests/os/jni/ |
D | android_os_cts_SeccompTest.cpp | 72 struct timespec ts; in android_security_cts_SeccompBpfTest_getClockBootTime() local 73 int rv = clock_gettime(CLOCK_BOOTTIME_ALARM, &ts); in android_security_cts_SeccompBpfTest_getClockBootTime()
|
/cts/tests/sensor/src/android/hardware/cts/helpers/ |
D | SensorRatePermissionDirectReportTestHelper.java | 89 .filter(event -> event.ts > startTimestamp && event.ts < endTimestamp) in computeAvgRate() 95 long lastTimestamp = filteredEvents.get(numOfEvents - 1).ts; in computeAvgRate() 96 long firstTimestamp = filteredEvents.get(0).ts; in computeAvgRate()
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
D | ComparisonReport.java | 68 TestSuite ts, in writeComparisonReport() argument 79 for (TestSuite.Package pkg : ts.getPackagesList()) { in writeComparisonReport() 202 TestSuite ts = TestSuite.parseFrom(new FileInputStream(testSuiteFileName)); in main() local 206 ts, in main()
|
D | TestCaseReport.java | 487 static void printTestSuite(TestSuite ts, List<String> knownFailures) { in printTestSuite() argument 491 for (TestSuite.Package pkg : ts.getPackagesList()) { in printTestSuite() 517 static void printTestSuiteSummary(TestSuite ts, String fName, List<String> knownFailures) in printTestSuiteSummary() argument 526 for (TestSuite.Package pkg : ts.getPackagesList()) { in printTestSuiteSummary() 586 TestSuite ts = listTestCases(tsContent, tsPath, tradFedJarPath).build(); in main() local 591 ts.writeTo(output); in main()
|
/cts/tests/tests/media/player/ |
D | Android.bp | 40 "-0 .ts", 81 "-0 .ts",
|
/cts/tests/tests/media/codec/ |
D | Android.bp | 40 "-0 .ts", 83 "-0 .ts",
|
/cts/tests/tests/media/decoder/ |
D | Android.bp | 69 "-0 .ts", 110 "-0 .ts",
|
/cts/tests/tests/media/drmframework/ |
D | Android.bp | 42 "-0 .ts", 92 "-0 .ts",
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | RVCVXCheckAnalyzer.java | 852 long [] ts = new long[1]; in analyzeVideo() local 854 while ((frame = videoDecoder.getFrame(ts)) !=null) { in analyzeVideo() 859 if (use_timestamp && ts[0] == -1) { in analyzeVideo() 935 timestamp = (double)ts[0] / 1e6; in analyzeVideo() 1221 public Mat getFrame(long ts[]) { in getFrame() argument 1222 return mMatBuffer.get(ts); in getFrame() 1264 public synchronized Mat get(long ts[]) { in get() argument 1278 ts[0] = timestamp; in get() 1282 public synchronized void put(long ts) { in put() argument 1295 timestamp = ts; in put()
|
/cts/tests/sensor/src/android/hardware/cts/ |
D | SensorDirectReportTest.java | 1469 long d = events.get(i).ts - events.get(i-1).ts; in checkEventRate() 1527 long d = events.get(i).ts - events.get(i-1).ts; in checkEventRateUs() 1648 long d = e.arrivalTs - e.ts; in checkTimestampAbsolute() 1688 directAverageLatency += e.arrivalTs - e.ts; in checkTimestampRelative() 1694 pollAverageLatency += e.arrivalTs - e.ts; in checkTimestampRelative() 1720 public long ts; 1764 event.ts = e.ts; 1796 e.ts = event.timestamp; 1856 ev.ts = byteBuffer.getLong(); 1872 ev.ts = b.getLong();
|
/cts/tests/tests/media/misc/ |
D | Android.bp | 88 "-0 .ts", 154 "-0 .ts",
|
/cts/hostsidetests/hdmicec/ |
D | cec_adapter.md | 56 Use the `ts` command to add timestamps. 59 $ cec-client | ts 70 ### ts is part of the moreutils package
|
/cts/tools/release-parser/src/com/android/cts/releaseparser/ |
D | TestSuiteParser.java | 496 TestSuite ts = getTestSuite(); in writeCsvFile() local 503 for (TestSuite.Module module : ts.getModulesList()) { in writeCsvFile() 530 TestSuite ts = getTestSuite(); in writeModuleCsvFile() local 539 for (TestSuite.Module module : ts.getModulesList()) { in writeModuleCsvFile()
|
/cts/tests/tests/media/common/src/android/media/cts/ |
D | AudioHelper.java | 419 public void add(@NonNull AudioTimestamp ts) { in add() argument 420 final long frames = ts.framePosition; in add() 421 final long timeNs = ts.nanoTime; in add()
|
D | MediaCodecBlockModelHelper.java | 328 FormatChangeEvent(long ts, Set<String> keys, MediaFormat fmt) { in FormatChangeEvent() argument 329 timestampUs = ts; in FormatChangeEvent()
|
/cts/tests/camera/utils/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 2804 long ts, String filePath) { in validateYuvData() argument 2814 filePath + "/" + width + "x" + height + "_" + ts / 1e6 + ".yuv"; in validateYuvData() 2820 long ts, String filePath) { in validateP010Data() argument 2830 filePath + "/" + width + "x" + height + "_" + ts / 1e6 + ".p010"; in validateP010Data() 2835 long ts, String filePath) { in validateRaw16Data() argument 2844 filePath + "/" + width + "x" + height + "_" + ts / 1e6 + ".raw16"; in validateRaw16Data() 2852 long ts, String filePath) { in validateY8Data() argument 2861 filePath + "/" + width + "x" + height + "_" + ts / 1e6 + ".y8"; in validateY8Data() 2869 long ts, String filePath) { in validateRawPrivateData() argument 2881 filePath + "/" + width + "x" + height + "_" + ts / 1e6 + ".rawPriv"; in validateRawPrivateData() [all …]
|
/cts/tests/tests/media/audio/src/android/media/audio/cts/ |
D | AudioRecordTest.java | 723 final AudioTimestamp ts = new AudioTimestamp(); in testTimestamp() local 741 if (record.getTimestamp(ts, AudioTimestamp.TIMEBASE_MONOTONIC) in testTimestamp() 743 tsVerifier.add(ts); in testTimestamp()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | RemoteViewsTest.java | 914 final long ts = SystemClock.uptimeMillis(); in performClick() local 916 ts, in performClick() 917 ts + 100, in performClick() 920 ts + 200, in performClick() 921 ts + 300, in performClick()
|
/cts/tests/tests/media/decoder/src/android/media/decoder/cts/ |
D | ImageReaderDecoderTest.java | 664 long ts) { in validateYuvData() argument
|
/cts/tests/tests/security/res/raw/ |
D | cve_2019_2245.ts | 2553 ��4���|J��!=���<[v:RI��,���%f#���&��ts���Q;U�v�T~�%4D�3�2O�mt���<٨��4�%�>�:�_l… 6709 …r}��E��.����jj.�] 裔�27�!��uД*�jÐ�oB�f ��.I�/�&���J�-��t�б�m#A_@k+&��0ɠ���"�ts[-�h+��3��
|
D | cve_2018_13925.ts | 2554 ��4���|J��!=���<[v:RI��,���%f#���&��ts���Q;U�v�T~�%4D�3�2O�mt���<٨��4�%�>�:�_l…
|