HomeSort by relevance Sort by last modified time
    Searched refs:temperature (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/dng_sdk/source/
dng_temperature.h 15 * Representation of color temperature and offset (tint) using black body
48 dng_temperature (real64 temperature,
51 : fTemperature (temperature)
67 void SetTemperature (real64 temperature)
69 fTemperature = temperature;
72 real64 Temperature () const
  /frameworks/base/core/java/android/os/
IThermalEventListener.aidl 19 import android.os.Temperature;
28 * @param temperature the temperature at which the event was generated.
31 in boolean isThrottling, in Temperature temperature);
IThermalService.aidl 20 import android.os.Temperature;
40 * @param temperature the temperature at which the event was generated.
44 in boolean isThrottling, in Temperature temperature);
  /frameworks/native/services/thermalservice/aidl/android/os/
IThermalEventListener.aidl 19 import android.os.Temperature;
28 * @param temperature the temperature at which the event was generated.
31 in boolean isThrottling, in Temperature temperature);
IThermalService.aidl 20 import android.os.Temperature;
38 * @param temperature the temperature at which the event was generated.
42 in boolean isThrottling, in Temperature temperature);
  /hardware/interfaces/thermal/1.1/
IThermalCallback.hal 19 import android.hardware.thermal@1.0::Temperature;
29 * @param temperature The temperature associated with the throttling
32 oneway notifyThrottling(bool isThrottling, Temperature temperature);
  /frameworks/native/services/thermalservice/libthermalcallback/
ThermalCallback.cpp 7 #include <android/os/Temperature.h>
28 const android::hardware::thermal::V1_0::Temperature& temperature) {
30 // Convert HIDL IThermal Temperature to binder IThermalService Temperature.
35 switch(temperature.type) {
54 value = temperature.currentValue == UNKNOWN_TEMPERATURE ? NAN :
55 temperature.currentValue;
57 android::os::Temperature thermal_svc_temp(value, type);
ThermalCallback.h 6 #include <android/os/Temperature.h>
29 const android::hardware::thermal::V1_0::Temperature& temperature)
  /packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
TemperatureController.java 22 * A controller that handles temperature updates for the driver and passenger.
58 public void onTemperatureChanged(int temperature) {
59 mHvacController.setPassengerTemperature(temperature);
66 public void onTemperatureChanged(int temperature) {
67 mHvacController.setDriverTemperature(temperature);
  /hardware/interfaces/thermal/1.0/vts/functional/
VtsHalThermalV1_0TargetTest.cpp 35 using ::android::hardware::thermal::V1_0::Temperature;
62 void checkTemperatures(const hidl_vec<Temperature> temperatures) {
71 // Names must be unique only for known temperature types.
123 // Check validity of temperature returned by Thermal HAL.
124 void checkDeviceTemperature(const Temperature& temperature) {
126 EXPECT_TRUE(temperature.type == TemperatureType::UNKNOWN ||
127 std::abs(temperature.currentValue) < MAX_DEVICE_TEMPERATURE ||
128 isnan(temperature.currentValue));
131 EXPECT_LT(0u, temperature.name.size())
    [all...]
  /bootable/recovery/otautil/
ThermalUtil.cpp 71 int temperature; local
72 if (!android::base::ParseInt(android::base::Trim(content), &temperature)) {
76 max_temperature = std::max(temperature, max_temperature);
78 LOG(INFO) << "current maximum temperature: " << max_temperature;
  /external/autotest/client/site_tests/hardware_EC/
hardware_EC.py 10 # checks basic EC functionality, such as FAN and temperature sensor.
67 temperature = ec.get_temperature(idx) - 273
68 if temperature < 0 or temperature > 100:
70 'Abnormal temperature reading on sensor %d' % idx)
  /hardware/interfaces/thermal/1.1/vts/functional/
VtsHalThermalV1_1TargetTest.cpp 24 using ::android::hardware::thermal::V1_0::Temperature;
33 static const Temperature kThrottleTemp = {
35 .name = "test temperature sensor",
45 Temperature temperature; member in class:ThermalCallbackArgs
56 const Temperature& temperature) override {
59 args.temperature = temperature;
98 EXPECT_EQ(kThrottleTemp, res.args->temperature);
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/perf/
thermal_throttle.py 13 'temperature')
114 temperature = self._detector.GetThrottlingTemperature(line)
115 if temperature is not None:
117 serial_number, temperature, degree_symbol)
120 # Print current temperature of CPU SoC.
121 temperature = self._detector.GetCurrentTemperature()
122 if temperature is not None:
123 logger.debug(u'Current SoC temperature of %s = %3.1f%sC',
124 serial_number, temperature, degree_symbol)
126 # Print temperature of battery, to give a system temperatur
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/perf/
thermal_throttle.py 11 'temperature')
111 temperature = self._detector.GetThrottlingTemperature(line)
112 if temperature is not None:
114 serial_number, temperature, degree_symbol)
117 # Print current temperature of CPU SoC.
118 temperature = self._detector.GetCurrentTemperature()
119 if temperature is not None:
120 logging.debug(u'Current SoC temperature of %s = %3.1f%sC',
121 serial_number, temperature, degree_symbol)
123 # Print temperature of battery, to give a system temperatur
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
example_test.go 67 pkg, err := conf.Check("temperature", fset, files, nil)
80 // package "temperature" scope {
81 // . const temperature.Boiling temperature.Celsius
82 // . type temperature.Celsius float64
83 // . func temperature.FToC(f float64) temperature.Celsius
84 // . func temperature.main()
90 // . . . var freezing temperature.Celsius
96 // . . . var c temperature.Celsiu
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
example_test.go 67 pkg, err := conf.Check("temperature", fset, files, nil)
80 // package "temperature" scope {
81 // . const temperature.Boiling temperature.Celsius
82 // . type temperature.Celsius float64
83 // . func temperature.FToC(f float64) temperature.Celsius
84 // . func temperature.main()
90 // . . . var freezing temperature.Celsius
96 // . . . var c temperature.Celsiu
    [all...]
  /frameworks/base/core/proto/android/service/
battery.proto 72 // Battery temperature in tenths of a degree Centigrade
73 int32 temperature = 12;
  /frameworks/native/services/thermalservice/
ThermalService.cpp 20 #include <android/os/Temperature.h>
32 * @param temperature the temperature at which the event was generated
35 const bool isThrottling, const Temperature& temperature) {
39 mThrottleTemperature = temperature;
42 mListeners[i]->notifyThrottling(isThrottling, temperature);
ThermalService.h 22 #include <android/os/Temperature.h>
36 const bool isThrottling, const Temperature& temperature);
42 Temperature mThrottleTemperature;
  /packages/apps/Car/Hvac/src/com/android/car/hvac/ui/
TemperatureBarOverlay.java 36 * An expandable temperature control bar. Note this UI is meant to only support Fahrenheit.
40 * A listener that observes clicks on the temperature bar.
43 void onTemperatureChanged(int temperature);
322 public void setTemperature(int temperature) {
324 int endColor = getTemperatureColor(temperature);
325 mTemperature = temperature;
346 * Sets whether or not the temperature bar is on. If it is off, it should show "off" instead
347 * of the temperature.
366 private int getTemperatureColor(int temperature) {
367 if (temperature >= 78)
    [all...]
  /external/autotest/client/deps/glbench/src/
utils.h 22 // Returns temperature of system before testing started. It is used as a
27 // Wait for machine to cool with temperature in Celsius and timeout in seconds.
28 // Returns the time spent waiting and sets the last observed temperature.
30 double *temperature);
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
DataStore.java 81 public void setTemperature(int zone, float temperature) {
83 mTemperature.put(zone, temperature);
88 public boolean shouldPropagateTempUpdate(int zone, float temperature) {
93 mTemperature.put(zone, temperature);
  /external/autotest/client/site_tests/graphics_GLBench/
graphics_GLBench.py 67 """Report current max observed temperature with given keyname.
71 temperature = utils.get_temperature_input_max()
72 logging.info('%s = %f degree Celsius', keyname, temperature)
75 value=temperature,
80 """Report temperature at which we will see throttling with given keyname.
84 temperature = utils.get_temperature_critical()
85 logging.info('%s = %f degree Celsius', keyname, temperature)
88 value=temperature,
  /device/google/wahoo/thermal/
Thermal.h 32 using ::android::hardware::thermal::V1_0::Temperature;
48 void notifyThrottling(bool isThrottling, const Temperature& temperature);

Completed in 1217 milliseconds

1 2 3 4 5 6 7 8 9