OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mZoneTempThresholds
(Results
1 - 2
of
2
) sorted by null
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalZone.java
57
protected Integer
mZoneTempThresholds
[]; /* Array containing temperature thresholds */
59
//
mZoneTempThresholds
contsins the calibrated thresholds that are used
145
Log.i(TAG, "
mZoneTempThresholds
[]: " + Arrays.toString(
mZoneTempThresholds
));
155
if (
mZoneTempThresholds
== null
156
||
mZoneTempThresholds
.length < ThermalManager.DEFAULT_NUM_ZONE_STATES) return;
158
s.append("[" + "State0" + "<" +
mZoneTempThresholds
[1] + "];");
161
s.append("[" +
mZoneTempThresholds
[index - 1] + "<=" + "State"
162
+ curstate + "<" +
mZoneTempThresholds
[index] + "];");
357
mZoneTempThresholds
= new Integer[thresholdList.size()]
[
all
...]
VirtualThermalZone.java
98
mZoneTempThresholds
[i] = ((mZoneTempThresholdsRaw[i] - c) * 1000) / m;
100
Log.i(TAG, "calibrateThresholds[]: " + Arrays.toString(
mZoneTempThresholds
));
Completed in 70 milliseconds