Home
last modified time | relevance | path

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

/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/lib/
DReportUtils.java98 for (long timestampNs: bucketInfo.getElapsedTimestampNanosList()) { in getGaugeMetricAtoms()
99 assertTimestampIsTruncated(timestampNs); in getGaugeMetricAtoms()
141 private static void assertTimestampIsTruncated(long timestampNs) { in assertTimestampIsTruncated() argument
144 .that(timestampNs % fiveMinutesInNs).isEqualTo(0); in assertTimestampIsTruncated()
DAtomTestUtils.java125 public static void assertTimestampIsTruncated(long timestampNs) { in assertTimestampIsTruncated() argument
128 .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/statsdatom/src/android/cts/statsdatom/statsd/
DAtomTestCase.java360 for (long timestampNs: bucketInfo.getElapsedTimestampNanosList()) { in getGaugeMetricDataList()
361 assertTimestampIsTruncated(timestampNs); in getGaugeMetricDataList()
938 protected void assertTimestampIsTruncated(long timestampNs) { in assertTimestampIsTruncated() argument
941 .that(timestampNs % fiveMinutesInNs).isEqualTo(0); in assertTimestampIsTruncated()
/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.java1080 long timestampNs) { in expectImageProperties() argument
1084 expectEquals(msg + "Image timestamp is wrong.", image.getTimestamp(), timestampNs); in expectImageProperties()