HomeSort by relevance Sort by last modified time
    Searched defs:fifoMaxEventCount (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
BatchArrivalVerification.java 62 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount();
65 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) {
67 fifoMaxEventCount * maximumExpectedSamplingPeriodUs;
EventTimestampSynchronizationVerification.java 72 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount();
74 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) {
75 long fifoBasedReportLatencyUs = fifoMaxEventCount * maximumExpectedSamplingPeriodUs;
TimestampClockSourceVerification.java 70 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount();
72 if (fifoMaxEventCount > 0 && maximumExpectedSamplingPeriodUs != Integer.MAX_VALUE) {
73 long fifoBasedReportLatencyUs = fifoMaxEventCount * maximumExpectedSamplingPeriodUs;
  /frameworks/base/core/jni/
android_hardware_SensorManager.cpp 59 jfieldID fifoMaxEventCount;
96 sensorOffsets.fifoMaxEventCount = _env->GetFieldID(sensorClass, "mFifoMaxEventCount", "I");
189 env->SetIntField(sensor, sensorOffsets.fifoMaxEventCount,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DeviceSuspendTestActivity.java 267 int fifoMaxEventCount = sensor.getFifoMaxEventCount();
319 int fifoMaxEventCount = sensor.getFifoMaxEventCount();
320 samplingPeriodUs = (int) MIN_LATENCY_US/fifoMaxEventCount;
449 int fifoMaxEventCount = sensor.getFifoMaxEventCount();
450 if (fifoMaxEventCount == 0) {
465 long fifoMaxEventCount = sensor.getFifoMaxEventCount();
466 return fifoMaxEventCount * samplePeriod;
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorTest.java 444 int fifoMaxEventCount = sensor.getFifoMaxEventCount();
446 assertTrue(fifoMaxEventCount >= 0);
448 assertTrue(fifoReservedEventCount <= fifoMaxEventCount);
  /hardware/libhardware/include/hardware/
sensors.h     [all...]

Completed in 333 milliseconds