Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dthermal_info.cpp708 std::array<float, kThrottlingSeverityCount> hot_hysteresis; in ParseSensorInfo() local
709 hot_hysteresis.fill(0.0); in ParseSensorInfo()
748 hot_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
749 if (std::isnan(hot_hysteresis[j])) { in ParseSensorInfo()
751 << "]'s HotHysteresis: " << hot_hysteresis[j]; in ParseSensorInfo()
756 << "]: " << hot_hysteresis[j]; in ParseSensorInfo()
767 } else if (hot_thresholds[j] > (hot_thresholds[k] - hot_hysteresis[k])) { in ParseSensorInfo()
920 .hot_hysteresis = hot_hysteresis, in ParseSensorInfo()
Dthermal_info.h170 ThrottlingArray hot_hysteresis; member
/hardware/google/pixel/thermal/
Dthermal-helper.cpp402 sensor_info.hot_hysteresis, sensor_info.cold_hysteresis, in readTemperature()
473 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis, in getSeverityFromThresholds() argument
489 if (!std::isnan(hot_thresholds[i]) && (hot_thresholds[i] - hot_hysteresis[i]) < value && in getSeverityFromThresholds()
718 !std::isnan(sensor_info.second.hot_hysteresis[i])) { in initializeTrip()
732 sensor_info.second.hot_hysteresis[i] / sensor_info.second.multiplier)); in initializeTrip()
Dthermal-helper.h196 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis,
DThermal.cpp697 dump_buf << name_info_pair.second.hot_hysteresis[i] << " "; in dumpThermalData()