Home
last modified time | relevance | path

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

/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
DThermalZone.java57 protected Integer mZoneTempThresholds[]; /* Array containing temperature thresholds */ field in ThermalZone
145 Log.i(TAG, "mZoneTempThresholds[]: " + Arrays.toString(mZoneTempThresholds)); in printAttrs()
155 if (mZoneTempThresholds == null in printStateThresholdMap()
156 || mZoneTempThresholds.length < ThermalManager.DEFAULT_NUM_ZONE_STATES) return; in printStateThresholdMap()
158 s.append("[" + "State0" + "<" + mZoneTempThresholds[1] + "];"); in printStateThresholdMap()
161 s.append("[" + mZoneTempThresholds[index - 1] + "<=" + "State" in printStateThresholdMap()
162 + curstate + "<" + mZoneTempThresholds[index] + "];"); in printStateThresholdMap()
357 mZoneTempThresholds = new Integer[thresholdList.size()]; in setZoneTempThreshold()
359 if (mZoneTempThresholds != null) { in setZoneTempThreshold()
360 mZoneTempThresholds = thresholdList.toArray(mZoneTempThresholds); in setZoneTempThreshold()
[all …]
DVirtualThermalZone.java98 mZoneTempThresholds[i] = ((mZoneTempThresholdsRaw[i] - c) * 1000) / m; in calibrateThresholds()
100 Log.i(TAG, "calibrateThresholds[]: " + Arrays.toString(mZoneTempThresholds)); in calibrateThresholds()