Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/display/
DDisplayDeviceConfig.java1995 List<ThermalBrightnessThrottlingData.ThrottlingLevel> throttlingLevels = in loadThermalBrightnessThrottlingMaps() local
2006 throttlingLevels.add(new ThermalBrightnessThrottlingData.ThrottlingLevel( in loadThermalBrightnessThrottlingMaps()
2018 ThermalBrightnessThrottlingData.create(throttlingLevels)); in loadThermalBrightnessThrottlingMaps()
2084 List<PowerThrottlingData.ThrottlingLevel> throttlingLevels = in loadPowerThrottlingMaps() local
2095 throttlingLevels.add(new PowerThrottlingData.ThrottlingLevel( in loadPowerThrottlingMaps()
2107 PowerThrottlingData.create(throttlingLevels)); in loadPowerThrottlingMaps()
3020 public List<ThrottlingLevel> throttlingLevels; field in DisplayDeviceConfig.PowerThrottlingData
3065 List<ThrottlingLevel> throttlingLevels) { in create() argument
3066 if (throttlingLevels == null || throttlingLevels.size() == 0) { in create()
3071 ThrottlingLevel prevLevel = throttlingLevels.get(0); in create()
[all …]
DBrightnessThrottler.java235 for (ThrottlingLevel level : mThermalThrottlingData.throttlingLevels) { in updateThermalThrottling()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/brightness/clamper/
DBrightnessThermalClamperTest.java126 public void testNotifyThrottlingAfterOnDisplayChange(List<ThrottlingLevel> throttlingLevels, in testNotifyThrottlingAfterOnDisplayChange() argument
130 mClamper.onDisplayChanged(new TestThermalData(throttlingLevels)); in testNotifyThrottlingAfterOnDisplayChange()
143 public void testOnDisplayChangeAfterNotifyThrottling(List<ThrottlingLevel> throttlingLevels, in testOnDisplayChangeAfterNotifyThrottling() argument
152 mClamper.onDisplayChanged(new TestThermalData(throttlingLevels)); in testOnDisplayChangeAfterNotifyThrottling()
/frameworks/base/services/core/java/com/android/server/display/brightness/clamper/
DBrightnessPowerClamper.java223 for (ThrottlingLevel level : mPowerThrottlingDataActive.throttlingLevels) { in getPowerQuotaForThermalStatus()
DBrightnessThermalClamper.java183 for (ThrottlingLevel level : mThermalThrottlingDataActive.throttlingLevels) { in recalculateBrightnessCap()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DBrightnessThrottlerTest.java142 assertThrottlingLevelsEquals(singleLevel, data.throttlingLevels); in testThermalBrightnessThrottlingData()
146 assertThrottlingLevelsEquals(validLevels, data.throttlingLevels); in testThermalBrightnessThrottlingData()