Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dconfig_parser.cpp114 std::array<float, kThrottlingSeverityCount> hot_hysteresis; in ParseSensorInfo() local
115 hot_hysteresis.fill(0.0); in ParseSensorInfo()
150 hot_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
151 if (std::isnan(hot_hysteresis[j])) { in ParseSensorInfo()
153 << "Sensor[" << name << "]'s HotHysteresis: " << hot_hysteresis[j]; in ParseSensorInfo()
158 << "]: " << hot_hysteresis[j]; in ParseSensorInfo()
224 .hot_hysteresis = hot_hysteresis, in ParseSensorInfo()
Dconfig_parser.h43 ThrottlingArray hot_hysteresis; member
/hardware/google/pixel/thermal/
Dthermal-helper.cpp314 sensor_info.hot_hysteresis, sensor_info.cold_hysteresis, in readTemperature()
351 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis, in getSeverityFromThresholds() argument
367 if (!std::isnan(hot_thresholds[i]) && (hot_thresholds[i] - hot_hysteresis[i]) < value && in getSeverityFromThresholds()
453 !std::isnan(sensor_info.second.hot_hysteresis[i])) { in initializeTrip()
466 sensor_info.second.hot_hysteresis[i] / sensor_info.second.multiplier)); in initializeTrip()
Dthermal-helper.h118 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis,
DThermal.cpp362 dump_buf << name_info_pair.second.hot_hysteresis[i] << " "; in debug()