Home
last modified time | relevance | path

Searched refs:min_alloc_power (Results 1 – 4 of 4) sorted by relevance

/hardware/google/pixel/thermal/utils/
Dthermal_info.h198 ThrottlingArray min_alloc_power; member
Dthermal_throttling.cpp216 return sensor_info.throttling_info->min_alloc_power[target_state]; in updatePowerBudget()
272 if (power_budget < sensor_info.throttling_info->min_alloc_power[target_state]) { in updatePowerBudget()
273 power_budget = sensor_info.throttling_info->min_alloc_power[target_state]; in updatePowerBudget()
Dthermal_info.cpp844 std::array<float, kThrottlingSeverityCount> min_alloc_power; in ParseSensorThrottlingInfo() local
845 min_alloc_power.fill(NAN); in ParseSensorThrottlingInfo()
904 !getFloatFromJsonValues(sensor["PIDInfo"]["MinAllocPower"], &min_alloc_power, false, in ParseSensorThrottlingInfo()
944 std::isnan(min_alloc_power[j]) || std::isnan(i_cutoff[j])) { in ParseSensorThrottlingInfo()
1029 min_alloc_power, s_power, i_cutoff, i_default, in ParseSensorThrottlingInfo()
/hardware/google/pixel/thermal/
DThermal.cpp422 *dump_buf << name_info_pair.second.throttling_info->min_alloc_power[i] << " "; in dumpThrottlingInfo()