Home | History | Annotate | Download | only in default

Lines Matching refs:Thermal

17 #define LOG_TAG "android.hardware.thermal@1.0-impl"
27 #include <hardware/thermal.h>
29 #include "Thermal.h"
33 namespace thermal {
45 Thermal::Thermal(thermal_module_t* module) : mModule(module) {}
47 // Methods from ::android::hardware::thermal::V1_0::IThermal follow.
48 Return<void> Thermal::getTemperatures(getTemperatures_cb _hidl_cb) {
54 ALOGI("getTemperatures is not implemented in Thermal HAL.");
104 Return<void> Thermal::getCpuUsages(getCpuUsages_cb _hidl_cb) {
110 ALOGI("getCpuUsages is not implemented in Thermal HAL");
142 Return<void> Thermal::getCoolingDevices(getCoolingDevices_cb _hidl_cb) {
148 ALOGI("getCoolingDevices is not implemented in Thermal HAL.");
200 return new Thermal(reinterpret_cast<thermal_module_t*>(device));
203 return new Thermal(module);
208 } // namespace thermal