Home
last modified time | relevance | path

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

/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
DThermalCooling.java620 int coolingDeviceState = thermalState / in handleThermalEvent() local
623 coolingDeviceState = (coolingDeviceState > (CdeviceInfo.getCoolingDeviceStates() - 1)) in handleThermalEvent()
624 ? CdeviceInfo.getCoolingDeviceStates() - 1 : coolingDeviceState; in handleThermalEvent()
625 int finalThrottleState = coolingDeviceState * in handleThermalEvent()
635 coolingDeviceState = (coolingDeviceState > throttleMaskList.size() - 1) in handleThermalEvent()
636 ? throttleMaskList.size() - 1 : coolingDeviceState; in handleThermalEvent()
637 currThrottleMask = throttleMaskList.get(coolingDeviceState); in handleThermalEvent()
663 coolingDeviceState = (coolingDeviceState > dethrottleMaskList.size() - 1) in handleThermalEvent()
664 ? dethrottleMaskList.size() - 1 : coolingDeviceState; in handleThermalEvent()
665 currDethrottleMask = dethrottleMaskList.get(coolingDeviceState); in handleThermalEvent()