Home | History | Annotate | Download | only in default

Lines Matching defs:temperatures

51   hidl_vec<Temperature> temperatures;
55 _hidl_cb(status, temperatures);
65 temperatures.resize(list.size());
69 temperatures[i].type = TemperatureType::UNKNOWN;
72 temperatures[i].type = TemperatureType::CPU;
75 temperatures[i].type = TemperatureType::GPU;
78 temperatures[i].type = TemperatureType::BATTERY;
81 temperatures[i].type = TemperatureType::SKIN;
87 temperatures[i].name = list[i].name;
88 temperatures[i].currentValue = finalizeTemperature(list[i].current_value);
89 temperatures[i].throttlingThreshold = finalizeTemperature(list[i].throttling_threshold);
90 temperatures[i].shutdownThreshold = finalizeTemperature(list[i].shutdown_threshold);
91 temperatures[i].vrThrottlingThreshold =
100 _hidl_cb(status, temperatures);