Home
last modified time | relevance | path

Searched refs:minDelayUs (Results 1 – 8 of 8) sorted by relevance

/hardware/interfaces/sensors/aidl/default/
DSensor.cpp55 if (samplingPeriodNs < mSensorInfo.minDelayUs * 1000LL) { in batch()
56 samplingPeriodNs = mSensorInfo.minDelayUs * 1000LL; in batch()
214 mSensorInfo.minDelayUs = 10 * 1000; // microseconds in AccelSensor()
243 mSensorInfo.minDelayUs = 100 * 1000; // microseconds in PressureSensor()
266 mSensorInfo.minDelayUs = 20 * 1000; // microseconds in MagnetometerSensor()
295 mSensorInfo.minDelayUs = 200 * 1000; // microseconds in LightSensor()
318 mSensorInfo.minDelayUs = 200 * 1000; // microseconds in ProximitySensor()
341 mSensorInfo.minDelayUs = 10 * 1000; // microseconds in GyroSensor()
370 mSensorInfo.minDelayUs = 40 * 1000; // microseconds in AmbientTempSensor()
394 mSensorInfo.minDelayUs = 40 * 1000; // microseconds in RelativeHumiditySensor()
[all …]
/hardware/interfaces/sensors/aidl/aidl_api/android.hardware.sensors/2/android/hardware/sensors/
DSensorInfo.aidl46 int minDelayUs;
/hardware/interfaces/sensors/aidl/aidl_api/android.hardware.sensors/current/android/hardware/sensors/
DSensorInfo.aidl46 int minDelayUs;
/hardware/interfaces/sensors/aidl/aidl_api/android.hardware.sensors/1/android/hardware/sensors/
DSensorInfo.aidl46 int minDelayUs;
/hardware/interfaces/sensors/aidl/android/hardware/sensors/
DSensorInfo.aidl88 int minDelayUs;
/hardware/interfaces/sensors/aidl/vts/
DVtsAidlHalSensorsTargetTest.cpp195 void assertDelayMatchReportMode(int32_t minDelayUs, int32_t maxDelayUs, int reportMode) { in assertDelayMatchReportMode() argument
198 ASSERT_LT(0, minDelayUs); in assertDelayMatchReportMode()
202 ASSERT_LE(0, minDelayUs); in assertDelayMatchReportMode()
206 ASSERT_EQ(-1, minDelayUs); in assertDelayMatchReportMode()
434 checkIsOk(batch(sensorInfo.sensorHandle, sensorInfo.minDelayUs, in activateAllSensors()
596 EXPECT_LE(info.minDelayUs, info.maxDelayUs); in TEST_P()
598 EXPECT_NO_FATAL_FAILURE(assertDelayMatchReportMode(info.minDelayUs, info.maxDelayUs, in TEST_P()
824 : sensor.minDelayUs; in TEST_P()
838 ASSERT_EQ(batch(sensor.sensorHandle, sensor.minDelayUs, 0 /* maxReportLatencyNs */) in TEST_P()
855 checkIsOk(batch(sensor.sensorHandle, sensor.minDelayUs, 0 /* maxReportLatencyNs */)); in TEST_P()
[all …]
/hardware/interfaces/sensors/aidl/default/multihal/
DConvertUtils.cpp51 aidlSensorInfo.minDelayUs = sensorInfo.minDelay; in convertSensorInfo()
/hardware/interfaces/sensors/aidl/convert/
Dconvert.cpp76 dst->minDelay = src.minDelayUs; in convertToSensor()