Home
last modified time | relevance | path

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

/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
DThermalZone.java339 public void setZoneTempThreshold(ArrayList<Integer> thresholdList) { in setZoneTempThreshold() argument
345 if (thresholdList != null ) { in setZoneTempThreshold()
349 for (int i = 0; i < thresholdList.size(); i++) { in setZoneTempThreshold()
350 if (thresholdList.get(i) <= mTripMax) in setZoneTempThreshold()
357 mZoneTempThresholds = new Integer[thresholdList.size()]; in setZoneTempThreshold()
358 mZoneTempThresholdsRaw = new Integer[thresholdList.size()]; in setZoneTempThreshold()
360 mZoneTempThresholds = thresholdList.toArray(mZoneTempThresholds); in setZoneTempThreshold()
363 mZoneTempThresholdsRaw = thresholdList.toArray(mZoneTempThresholdsRaw); in setZoneTempThreshold()