Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dthermal_stats_helper.cpp232 std::make_shared<TempStuckInfo>(sensors_temp_stuck_info.temp_stuck_info); in initializeSensorAbnormalityStats()
366 const auto &temp_stuck_info = sensor_stats.temp_stuck_info_map_[sensor.data()]; in verifySensorAbnormality() local
373 if (temp_stuck_info->min_polling_count <= curr_temp_status.repeat_count) { in verifySensorAbnormality()
376 if (temp_stuck_info->min_stuck_duration <= time_elapsed_ms) { in verifySensorAbnormality()
379 << temp_stuck_info->min_polling_count << " times for " in verifySensorAbnormality()
Dthermal_info.h117 TempStuckInfo temp_stuck_info; member
Dthermal_info.cpp160 bool getTempStuckInfoFromJsonValue(const Json::Value &values, TempStuckInfo *temp_stuck_info) { in getTempStuckInfoFromJsonValue() argument
180 temp_stuck_info->min_stuck_duration = std::chrono::milliseconds(min_stuck_duration_int); in getTempStuckInfoFromJsonValue()
181 temp_stuck_info->min_polling_count = min_polling_count; in getTempStuckInfoFromJsonValue()
182 LOG(INFO) << "Temp Stuck Info: polling_count=" << temp_stuck_info->min_polling_count in getTempStuckInfoFromJsonValue()
183 << " stuck_duration=" << temp_stuck_info->min_stuck_duration.count(); in getTempStuckInfoFromJsonValue()
1785 &sensor_temp_stuck_info.temp_stuck_info)) { in ParseSensorAbnormalStatsConfig()