Home
last modified time | relevance | path

Searched refs:maxRange (Results 1 – 17 of 17) sorted by relevance

/frameworks/native/include/input/
DInputDevice.h118 float maxRange, float resolution, float power, int32_t minDelay, in InputDeviceSensorInfo()
127 maxRange(maxRange), in InputDeviceSensorInfo()
148 float maxRange; member
/frameworks/base/core/java/android/hardware/input/
DInputSensorInfo.java79 float maxRange, in InputSensorInfo() argument
99 this.mMaxRange = maxRange; in InputSensorInfo()
264 float maxRange = in.readFloat(); in InputSensorInfo() local
285 this.mMaxRange = maxRange; in InputSensorInfo()
/frameworks/native/services/sensorservice/
DRotationVectorSensor.cpp38 .maxRange = 1, in RotationVectorSensor()
124 .maxRange = 1, in GyroDriftSensor()
DSensorDeviceUtils.cpp89 if (sensor.maxRange == 0) { in resolutionForSensor()
96 double lowerBound = 2.0 * sensor.maxRange / std::pow(2, 24); in resolutionForSensor()
DCorrectedGyroSensor.cpp47 .maxRange = mGyro.getMaxValue(), in CorrectedGyroSensor()
DOrientationSensor.cpp39 .maxRange = 360.0f, in OrientationSensor()
DGravitySensor.cpp46 .maxRange = GRAVITY_EARTH * 2, in GravitySensor()
DLinearAccelerationSensor.cpp41 .maxRange = gsensor.getMaxValue(), in LinearAccelerationSensor()
DSensorDevice.cpp99 float quantizedRange = sensor.maxRange; in initializeSensorList()
106 if (fabsf(sensor.maxRange - quantizedRange) > sensor.resolution / 8) { in initializeSensorList()
109 sensor.name, sensor.maxRange, sensor.resolution, quantizedRange); in initializeSensorList()
110 sensor.maxRange = quantizedRange; in initializeSensorList()
222 (std::abs(prevSensor.maxRange - newSensor.maxRange) > 0.001f) || in sensorIsEquivalent()
DLimitedAxesImuSensor.cpp57 .maxRange = mImu3dSensor.getMaxValue(), in LimitedAxesImuSensor()
DAidlSensorHalWrapper.cpp82 dst->maxRange = src.maxRange; in convertToSensor()
/frameworks/native/services/sensorservice/hidl/
Dutils.cpp43 dst.maxRange = src.getMaxValue(); in convertSensor()
/frameworks/native/libs/sensor/tests/
DSensor_test.cpp63 hwSensor.maxRange = 10.f; in getTestSensorT()
/frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
DASensorManager.cpp397 return reinterpret_cast<const SensorInfo *>(sensor)->maxRange; in ASensor_getMaxRange()
/frameworks/native/services/inputflinger/reader/mapper/
DSensorInputMapper.cpp102 dump += StringPrintf(INDENT5 "maxRange: %f\n", sensor.sensorInfo.maxRange); in dump()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp188 jfieldID maxRange; member
2204 jint handle, jint type, jfloat maxRange, jfloat resolution, in createInputSensorInfo() argument
2217 env->SetFloatField(sensorInfo, gInputSensorInfo.maxRange, maxRange); in createInputSensorInfo()
2247 static_cast<jfloat>(sensorInfo.maxRange), in nativeGetSensorList()
2609 GET_FIELD_ID(gInputSensorInfo.maxRange, gInputSensorInfo.clazz, "mMaxRange", "F"); in register_android_server_InputManager()
/frameworks/native/libs/sensor/
DSensor.cpp56 mMaxValue = hwSensor.maxRange; // FIXME: maxValue in Sensor()