Home
last modified time | relevance | path

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

/cts/tests/sensor/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.java330 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenReportLatencyExpires() local
382 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenFIFOFull() local
383 samplingPeriodUs = (int) MIN_LATENCY_US/fifoMaxEventCount; in runAPWakeUpWhenFIFOFull()
512 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in verifyBatchingSupport() local
513 if (fifoMaxEventCount == 0) { in verifyBatchingSupport()
528 long fifoMaxEventCount = sensor.getFifoMaxEventCount(); in maxBatchingPeriod() local
529 return fifoMaxEventCount * samplePeriod; in maxBatchingPeriod()
/cts/tests/sensor/src/android/hardware/cts/
DSensorTest.java552 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in assertSensorValues() local
554 assertTrue(fifoMaxEventCount >= 0); in assertSensorValues()
556 assertTrue(fifoReservedEventCount <= fifoMaxEventCount); in assertSensorValues()