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()
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.java333 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenReportLatencyExpires() local
385 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in runAPWakeUpWhenFIFOFull() local
386 samplingPeriodUs = (int) MIN_LATENCY_US/fifoMaxEventCount; in runAPWakeUpWhenFIFOFull()
515 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in verifyBatchingSupport() local
516 if (fifoMaxEventCount == 0) { in verifyBatchingSupport()
531 long fifoMaxEventCount = sensor.getFifoMaxEventCount(); in maxBatchingPeriod() local
532 return fifoMaxEventCount * samplePeriod; in maxBatchingPeriod()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0007/
Dpoc.cpp42 hwSensor.fifoMaxEventCount = 100; in getTestSensorT()
/cts/tests/sensor/src/android/hardware/cts/
DSensorTest.java603 int fifoMaxEventCount = sensor.getFifoMaxEventCount(); in assertSensorValues() local
605 assertTrue(fifoMaxEventCount >= 0); in assertSensorValues()
607 assertTrue(fifoReservedEventCount <= fifoMaxEventCount); in assertSensorValues()