Home
last modified time | relevance | path

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

/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DBrightnessMappingStrategyTest.java19 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
175 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testSimpleStrategyMappingAtControlPoints()
187 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testSimpleStrategyMappingBetweenControlPoints()
202 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testSimpleStrategyIgnoresNewConfiguration()
218 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testSimpleStrategyIgnoresNullConfiguration()
233 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testPhysicalStrategyMappingAtControlPoints()
252 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testPhysicalStrategyMappingBetweenControlPoints()
271 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testPhysicalStrategyUsesNewConfigurations()
298 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testPhysicalStrategyRecalculateSplines()
344 AUTO_BRIGHTNESS_MODE_DEFAULT, /* displayWhiteBalanceController= */ null); in testDefaultStrategyIsPhysical()
[all …]
DAutomaticBrightnessControllerTest.java20 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
134 when(mBrightnessMappingStrategy.getMode()).thenReturn(AUTO_BRIGHTNESS_MODE_DEFAULT); in setupController()
139 brightnessMappingStrategyMap.append(AUTO_BRIGHTNESS_MODE_DEFAULT, in setupController()
375 mController.switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ true); in testShortTermModelTimesOut()
416 mController.switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ true); in testShortTermModelDoesntTimeOut()
461 mController.switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ true); in testShortTermModelIsRestoredWhenSwitchingWithinTimeout()
508 mController.switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ true); in testShortTermModelNotRestoredAfterTimeout()
549 mController.switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ true); in testSwitchBetweenModesNoUserInteractions()
DDisplayPowerControllerTest.java21 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
1778 .switchMode(AUTO_BRIGHTNESS_MODE_DEFAULT, /* sendUpdate= */ false); in testSwitchToDozeAutoBrightnessMode()
/frameworks/base/services/core/java/com/android/server/display/config/
DDisplayBrightnessMappingConfig.java19 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
241 case AUTO_BRIGHTNESS_MODE_DEFAULT -> { in autoBrightnessModeToString()
/frameworks/base/services/core/java/com/android/server/display/brightness/
DBrightnessEvent.java22 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
146 mAutoBrightnessMode = AUTO_BRIGHTNESS_MODE_DEFAULT; in reset()
/frameworks/base/services/core/java/com/android/server/display/brightness/strategy/
DAutomaticBrightnessStrategy.java18 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
495 ? AUTO_BRIGHTNESS_MODE_DOZE : AUTO_BRIGHTNESS_MODE_DEFAULT, sendUpdate); in switchMode()
/frameworks/base/services/core/java/com/android/server/display/
DAutomaticBrightnessController.java80 AUTO_BRIGHTNESS_MODE_DEFAULT,
87 public static final int AUTO_BRIGHTNESS_MODE_DEFAULT = 0; field in AutomaticBrightnessController
331 mCurrentBrightnessMapper = brightnessMappingStrategyMap.get(AUTO_BRIGHTNESS_MODE_DEFAULT); in AutomaticBrightnessController()
487 return mCurrentBrightnessMapper.getMode() == AUTO_BRIGHTNESS_MODE_DEFAULT in isDefaultConfig()
493 return mBrightnessMappingStrategyMap.get(AUTO_BRIGHTNESS_MODE_DEFAULT).getDefaultConfig(); in getDefaultConfig()
563 if (mBrightnessMappingStrategyMap.get(AUTO_BRIGHTNESS_MODE_DEFAULT) in setBrightnessConfiguration()
DBrightnessMappingStrategy.java21 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
105 case AUTO_BRIGHTNESS_MODE_DEFAULT -> { in create()
DDisplayPowerController.java21 import static com.android.server.display.AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT;
1026 brightnessMappers.append(AUTO_BRIGHTNESS_MODE_DEFAULT, in setUpAutoBrightness()
1400 ? AUTO_BRIGHTNESS_MODE_DOZE : AUTO_BRIGHTNESS_MODE_DEFAULT, in updatePowerStateInternal()
3212 AUTO_BRIGHTNESS_MODE_DEFAULT, displayWhiteBalanceController); in getDefaultModeBrightnessMapper()
DDisplayManagerService.java3006 : AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT); in setDockedAndIdleEnabled()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/brightness/strategy/
DAutomaticBrightnessStrategyTest.java287 AutomaticBrightnessController.AUTO_BRIGHTNESS_MODE_DEFAULT, in testAutoBrightnessState_modeSwitch()