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.cpp1141 std::array<float, kThrottlingSeverityCount> hot_hysteresis; in ParseSensorInfo() local
1142 hot_hysteresis.fill(0.0); in ParseSensorInfo()
1181 hot_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
1182 if (std::isnan(hot_hysteresis[j])) { in ParseSensorInfo()
1184 << "]'s HotHysteresis: " << hot_hysteresis[j]; in ParseSensorInfo()
1189 << "]: " << hot_hysteresis[j]; in ParseSensorInfo()
1200 } else if (hot_thresholds[j] > (hot_thresholds[k] - hot_hysteresis[k])) { in ParseSensorInfo()
1371 .hot_hysteresis = hot_hysteresis, in ParseSensorInfo()
Dthermal_info.h213 ThrottlingArray hot_hysteresis; member
/hardware/google/pixel/thermal/
Dthermal-helper.cpp540 sensor_info.hot_hysteresis, sensor_info.cold_hysteresis, in readTemperature()
612 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis, in getSeverityFromThresholds() argument
628 if (!std::isnan(hot_thresholds[i]) && (hot_thresholds[i] - hot_hysteresis[i]) < value && in getSeverityFromThresholds()
857 !std::isnan(sensor_info.second.hot_hysteresis[i])) { in initializeTrip()
870 threshold = std::to_string(std::lround(sensor_info.second.hot_hysteresis[i] / in initializeTrip()
Dthermal-helper.h212 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis,
DThermal.cpp773 dump_buf << name_info_pair.second.hot_hysteresis[i] << " "; in dumpThermalData()