Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/power/
DThermalManagerServiceTest.java134 TemperatureThreshold cpuThreshold = new TemperatureThreshold(); in initializeThresholds() local
135 cpuThreshold.type = Temperature.TYPE_CPU; in initializeThresholds()
136 cpuThreshold.name = "cpu"; in initializeThresholds()
137 cpuThreshold.hotThrottlingThresholds = new float[7 /*ThrottlingSeverity#len*/]; in initializeThresholds()
138 cpuThreshold.coldThrottlingThresholds = new float[7 /*ThrottlingSeverity#len*/]; in initializeThresholds()
139 for (int i = 0; i < cpuThreshold.hotThrottlingThresholds.length; ++i) { in initializeThresholds()
141 cpuThreshold.hotThrottlingThresholds[i] = 95.0f; in initializeThresholds()
143 cpuThreshold.hotThrottlingThresholds[i] = Float.NaN; in initializeThresholds()
146 thresholds.add(cpuThreshold); in initializeThresholds()