/device/google/wahoo/thermal/ |
Thermal.cpp | 23 #include "Thermal.h" 24 #include "thermal-helper.h" 28 namespace thermal { namespace in namespace:android::hardware 32 Thermal::Thermal() : enabled(initThermal()) {} 37 // framework for sending thermal events to the framework thermal event bus. 52 // Methods from ::android::hardware::thermal::V1_0::IThermal follow. 53 Return<void> Thermal::getTemperatures(getTemperatures_cb _hidl_cb) { 69 status.debugMessage = "Error reading thermal sensors." [all...] |
Thermal.h | 19 #include <android/hardware/thermal/1.1/IThermal.h> 20 #include <android/hardware/thermal/1.1/IThermalCallback.h> 26 namespace thermal { namespace in namespace:android::hardware 30 using ::android::hardware::thermal::V1_0::CoolingDevice; 31 using ::android::hardware::thermal::V1_0::CpuUsage; 32 using ::android::hardware::thermal::V1_0::Temperature; 33 using ::android::hardware::thermal::V1_0::ThermalStatus; 34 using ::android::hardware::thermal::V1_0::ThermalStatusCode; 35 using ::android::hardware::thermal::V1_1::IThermal; 36 using ::android::hardware::thermal::V1_1::IThermalCallback [all...] |
/hardware/interfaces/thermal/1.0/default/ |
Thermal.h | 19 #include <android/hardware/thermal/1.0/IThermal.h> 21 #include <hardware/thermal.h> 27 namespace thermal { namespace in namespace:android::hardware 31 using ::android::hardware::thermal::V1_0::CoolingDevice; 32 using ::android::hardware::thermal::V1_0::CpuUsage; 33 using ::android::hardware::thermal::V1_0::IThermal; 34 using ::android::hardware::thermal::V1_0::Temperature; 35 using ::android::hardware::thermal::V1_0::ThermalStatus; 42 struct Thermal : public IThermal { 43 Thermal(thermal_module_t* module) [all...] |
Thermal.cpp | 17 #define LOG_TAG "android.hardware.thermal@1.0-impl" 27 #include <hardware/thermal.h> 29 #include "Thermal.h" 33 namespace thermal { namespace in namespace:android::hardware 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) [all...] |
/external/bart/docs/examples/ |
thermal.py | 17 An example file for usage of Analyzer for thermal assertions 37 config["THERMAL"] = trappy.thermal.Thermal 41 config["GOVERNOR"] = trappy.thermal.ThermalGovernor 57 "numpy.percentile(THERMAL:temp, EXPECTED_TEMP_QRT) < (CONTROL_TEMP + 5000)")) 63 "numpy.mean(THERMAL:temp) < CONTROL_TEMP", select=self.tz)) 69 "(numpy.std(THERMAL:temp) * 100.0) / numpy.mean(THERMAL:temp)\
|
/external/trappy/tests/ |
test_plotter.py | 39 l = trappy.LinePlot(trace1, trappy.thermal.Thermal, column="temp") 47 [trace1, trace2], trappy.thermal.Thermal, column="temp") 56 [trappy.thermal.Thermal, 57 trappy.thermal.ThermalGovernor], 78 trappy.thermal.Thermal, 213 signals=["thermal:temp:1,2,3" [all...] |
test_stats_grammar.py | 51 eqn = "trappy.thermal.Thermal:temp + \ 52 trappy.thermal.Thermal:temp" 57 parser.data.thermal.data_frame["temp"], check_names=False) 65 eqn = "numpy.mean(trappy.thermal.Thermal:temp) + 1000" 69 parser.data.thermal.data_frame["temp"]) + 72 eqn = "numpy.mean(trappy.thermal.Thermal:temp) + numpy.mean(trappy.thermal.Thermal:temp) [all...] |
/external/trappy/trappy/stats/ |
grammar.py | 289 parser.solve("trappy.thermal.Thermal:temp * 2") 297 pvars = {"THERMAL": trappy.thermal.Thermal} 300 parser.solve("THERMAL:temp * 2") 309 parser.solve("thermal:temp * 2") 311 The event :mod:`trappy.thermal.Thermal` is aliased 312 as **thermal** in the gramma [all...] |
/external/trappy/trappy/ |
thermal.py | 26 class Thermal(Base): 27 """Process the thermal framework data in a FTrace dump""" 32 name = "thermal" 66 :param tz_id: thermal zone id as it appears in the id field of 83 raise ValueError("No thermal_temperature trace for thermal zone {}".format(tz_id)) 118 register_ftrace_parser(Thermal, "thermal") 310 register_ftrace_parser(ThermalGovernor, "thermal")
|
/test/vts/tools/build/tasks/list/ |
vts_func_fuzzer_package_list.mk | 106 android.hardware.thermal@1.0-vts.func_fuzzer.Thermal \
|