Home | History | Annotate | Download | only in power

Lines Matching refs:brightness

84         // animation is not playing.  We don't know the screen's brightness though,
86 // Although we set the brightness to full on here, the display power controller
87 // will reset the brightness to a new level immediately before the changes
147 * Sets the display brightness.
149 * @param brightness The brightness, ranges from 0 (minimum / off) to 255 (brightest).
151 public void setScreenBrightness(int brightness) {
152 if (mScreenBrightness != brightness) {
154 Slog.d(TAG, "setScreenBrightness: brightness=" + brightness);
157 mScreenBrightness = brightness;
166 * Gets the screen brightness.
224 scheduleScreenUpdate(); // update backlight brightness
305 int brightness = mScreenOn && mElectronBeamLevel > 0f ? mScreenBrightness : 0;
306 if (mPhotonicModulator.setState(mScreenOn, brightness)) {