Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeScreenBrightness.java77 private final Optional<Sensor>[] mLightSensorOptional; // light sensors to use per posture field in DozeScreenBrightness
120 mLightSensorOptional = lightSensorOptional; in DozeScreenBrightness()
218 return mLightSensorOptional != null in lightSensorSupportsCurrentPosture()
219 && mDevicePosture < mLightSensorOptional.length; in lightSensorSupportsCurrentPosture()
224 return mLightSensorOptional != null && mLightSensorOptional[0].isPresent(); in isLightSensorPresent()
227 return mLightSensorOptional[mDevicePosture].isPresent(); in isLightSensorPresent()
235 return mLightSensorOptional[mDevicePosture].get(); in getLightSensor()
352 || mLightSensorOptional.length < 2
353 || posture >= mLightSensorOptional.length) {
357 final Sensor oldSensor = mLightSensorOptional[mDevicePosture].get();
[all …]