Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dconfig_parser.cpp209 std::array<float, kThrottlingSeverityCount> cold_thresholds; in ParseSensorInfo() local
210 cold_thresholds.fill(NAN); in ParseSensorInfo()
277 cold_thresholds[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
278 if (!std::isnan(cold_thresholds[j])) { in ParseSensorInfo()
279 if (cold_thresholds[j] > max) { in ParseSensorInfo()
282 << "]: " << cold_thresholds[j] << " > " << max; in ParseSensorInfo()
286 max = cold_thresholds[j]; in ParseSensorInfo()
289 << "]: " << cold_thresholds[j]; in ParseSensorInfo()
661 .cold_thresholds = cold_thresholds, in ParseSensorInfo()
Dconfig_parser.h102 ThrottlingArray cold_thresholds; member
/hardware/google/pixel/thermal/
Dthermal-helper.h188 const ThrottlingArray &hot_thresholds, const ThrottlingArray &cold_thresholds,