Home
last modified time | relevance | path

Searched refs:timestampNs (Results 1 – 5 of 5) sorted by relevance

/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/lib/
DReportUtils.java156 for (long timestampNs : bucketInfo.getElapsedTimestampNanosList()) { in getGaugeMetricAtoms()
157 assertTimestampIsTruncated(timestampNs); in getGaugeMetricAtoms()
179 for (long timestampNs : atomInfo.getElapsedTimestampNanosList()) { in backFillGaugeBucketAtoms()
180 atomTimestamp.add(Pair.create(atomInfo.getAtom(), timestampNs)); in backFillGaugeBucketAtoms() local
234 private static void assertTimestampIsTruncated(long timestampNs) { in assertTimestampIsTruncated() argument
237 .that(timestampNs % fiveMinutesInNs).isEqualTo(0); in assertTimestampIsTruncated()
DAtomTestUtils.java184 public static void assertTimestampIsTruncated(long timestampNs) { in assertTimestampIsTruncated() argument
187 .that(timestampNs % fiveMinutesInNs).isEqualTo(0); in assertTimestampIsTruncated()
/cts/tests/sensor/src/android/hardware/cts/helpers/
DTestSensorEventListener.java101 long timestampNs = SystemClock.elapsedRealtimeNanos(); in onSensorChanged() local
104 mCollectedEvents.add(new TestSensorEvent(event, timestampNs)); in onSensorChanged()
155 long timestampNs = SystemClock.elapsedRealtimeNanos(); in onFlushCompleted() local
157 mTimeStampFlushCompleteEvents.add(timestampNs); in onFlushCompleted()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0213/
Dpoc.cpp103 int64_t timestampNs) override { in onFrameRendered()
106 (void)timestampNs; in onFrameRendered()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DCameraErrorCollector.java1175 long timestampNs) { in expectImageProperties() argument
1179 expectEquals(msg + "Image timestamp is wrong.", image.getTimestamp(), timestampNs); in expectImageProperties()