Home
last modified time | relevance | path

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

/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DBrightnessThrottlerTest.java151 final BrightnessThrottler throttler = createThrottlerUnsupported(); in testThermalThrottlingUnsupported() local
152 assertFalse(throttler.deviceSupportsThrottling()); in testThermalThrottlingUnsupported()
158 assertEquals(PowerManager.BRIGHTNESS_MAX, throttler.getBrightnessCap(), 0f); in testThermalThrottlingUnsupported()
169 final BrightnessThrottler throttler = createThrottlerSupported(data); in testThermalThrottlingSingleLevel() local
170 assertTrue(throttler.deviceSupportsThrottling()); in testThermalThrottlingSingleLevel()
179 assertEquals(PowerManager.BRIGHTNESS_MAX, throttler.getBrightnessCap(), 0f); in testThermalThrottlingSingleLevel()
180 assertFalse(throttler.isThrottled()); in testThermalThrottlingSingleLevel()
181 assertEquals(BrightnessInfo.BRIGHTNESS_MAX_REASON_NONE, throttler.getBrightnessMaxReason()); in testThermalThrottlingSingleLevel()
186 assertEquals(level.brightness, throttler.getBrightnessCap(), 0f); in testThermalThrottlingSingleLevel()
187 assertTrue(throttler.isThrottled()); in testThermalThrottlingSingleLevel()
[all …]
/frameworks/base/services/core/java/com/android/server/display/whitebalance/
DDisplayWhiteBalanceController.java190 @NonNull DisplayWhiteBalanceThrottler throttler, in DisplayWhiteBalanceController() argument
209 colorTemperatureFilter, throttler); in DisplayWhiteBalanceController()
214 mThrottler = throttler; in DisplayWhiteBalanceController()
635 DisplayWhiteBalanceThrottler throttler) { in validateArguments() argument
642 Objects.requireNonNull(throttler, "throttler cannot be null"); in validateArguments()
DDisplayWhiteBalanceFactory.java69 final DisplayWhiteBalanceThrottler throttler = createThrottler(resources); in create() local
120 throttler, displayWhiteBalanceLowLightAmbientBrightnesses, in create()
/frameworks/base/cmds/incidentd/src/
DIncidentService.h51 const sp<Throttler>& throttler,
DIncidentService.cpp130 const sp<Throttler>& throttler, in ReportHandler() argument
137 mThrottler(throttler), in ReportHandler()