Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dthermal_info.cpp1143 std::array<float, kThrottlingSeverityCount> cold_hysteresis; in ParseSensorInfo() local
1144 cold_hysteresis.fill(0.0); in ParseSensorInfo()
1246 cold_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
1247 if (std::isnan(cold_hysteresis[j])) { in ParseSensorInfo()
1249 << "]'s ColdHysteresis: " << cold_hysteresis[j]; in ParseSensorInfo()
1254 << "]: " << cold_hysteresis[j]; in ParseSensorInfo()
1265 } else if (cold_thresholds[j] < (cold_thresholds[k] + cold_hysteresis[k])) { in ParseSensorInfo()
1372 .cold_hysteresis = cold_hysteresis, in ParseSensorInfo()
Dthermal_info.h214 ThrottlingArray cold_hysteresis; member
/hardware/google/pixel/thermal/
Dthermal-helper.h212 const ThrottlingArray &hot_hysteresis, const ThrottlingArray &cold_hysteresis,
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
636 if (!std::isnan(cold_thresholds[i]) && (cold_thresholds[i] + cold_hysteresis[i]) > value && in getSeverityFromThresholds()
DThermal.cpp777 dump_buf << name_info_pair.second.cold_hysteresis[i] << " "; in dumpThermalData()