Home
last modified time | relevance | path

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

/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
DBatchArrivalVerification.java62 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount(); in getDefault() local
65 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) { in getDefault()
67 fifoMaxEventCount * maximumExpectedSamplingPeriodUs; in getDefault()
DEventTimestampSynchronizationVerification.java72 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount(); in getDefault() local
74 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) { in getDefault()
75 long fifoBasedReportLatencyUs = fifoMaxEventCount * maximumExpectedSamplingPeriodUs; in getDefault()
DTimestampClockSourceVerification.java70 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount(); in getDefault() local
72 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) { in getDefault()
73 long fifoBasedReportLatencyUs = fifoMaxEventCount * maximumExpectedSamplingPeriodUs; in getDefault()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DDeviceSuspendTestActivity.java267 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenReportLatencyExpires() local
319 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenFIFOFull() local
320 samplingPeriodUs = (int) MIN_LATENCY_US/fifoMaxEventCount; in runAPWakeUpWhenFIFOFull()
449 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in verifyBatchingSupport() local
450 if (fifoMaxEventCount == 0) { in verifyBatchingSupport()
465 long fifoMaxEventCount = sensor.getFifoMaxEventCount(); in maxBatchingPeriod() local
466 return fifoMaxEventCount * samplePeriod; in maxBatchingPeriod()
/cts/tests/tests/hardware/src/android/hardware/cts/
DSensorTest.java444 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in assertSensorValues() local
446 assertTrue(fifoMaxEventCount >= 0); in assertSensorValues()
448 assertTrue(fifoReservedEventCount <= fifoMaxEventCount); in assertSensorValues()