mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:09:42 +00:00
Merge "Add @hide annotation to thermal AIDL interfaces" am: afcb8629b6
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2328520 Change-Id: I94fed4ebd39ad83897178e245d24b11b1240d611 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable CoolingDevice {
|
parcelable CoolingDevice {
|
||||||
android.hardware.thermal.CoolingType type;
|
android.hardware.thermal.CoolingType type;
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@Backing(type="int") @VintfStability
|
@Backing(type="int") @VintfStability
|
||||||
enum CoolingType {
|
enum CoolingType {
|
||||||
FAN = 0,
|
FAN = 0,
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
interface IThermal {
|
interface IThermal {
|
||||||
android.hardware.thermal.CoolingDevice[] getCoolingDevices();
|
android.hardware.thermal.CoolingDevice[] getCoolingDevices();
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
interface IThermalChangedCallback {
|
interface IThermalChangedCallback {
|
||||||
oneway void notifyThrottling(in android.hardware.thermal.Temperature temperature);
|
oneway void notifyThrottling(in android.hardware.thermal.Temperature temperature);
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable Temperature {
|
parcelable Temperature {
|
||||||
android.hardware.thermal.TemperatureType type;
|
android.hardware.thermal.TemperatureType type;
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable TemperatureThreshold {
|
parcelable TemperatureThreshold {
|
||||||
android.hardware.thermal.TemperatureType type;
|
android.hardware.thermal.TemperatureType type;
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@Backing(type="int") @VintfStability
|
@Backing(type="int") @VintfStability
|
||||||
enum TemperatureType {
|
enum TemperatureType {
|
||||||
UNKNOWN = -1,
|
UNKNOWN = -1,
|
||||||
|
|||||||
@@ -32,6 +32,7 @@
|
|||||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||||
|
|
||||||
package android.hardware.thermal;
|
package android.hardware.thermal;
|
||||||
|
/* @hide */
|
||||||
@Backing(type="int") @VintfStability
|
@Backing(type="int") @VintfStability
|
||||||
enum ThrottlingSeverity {
|
enum ThrottlingSeverity {
|
||||||
NONE = 0,
|
NONE = 0,
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ package android.hardware.thermal;
|
|||||||
|
|
||||||
import android.hardware.thermal.CoolingType;
|
import android.hardware.thermal.CoolingType;
|
||||||
|
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable CoolingDevice {
|
parcelable CoolingDevice {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ package android.hardware.thermal;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Device cooling device types
|
* Device cooling device types
|
||||||
|
* @hide
|
||||||
*/
|
*/
|
||||||
@VintfStability
|
@VintfStability
|
||||||
@Backing(type="int")
|
@Backing(type="int")
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.hardware.thermal.Temperature;
|
|||||||
import android.hardware.thermal.TemperatureThreshold;
|
import android.hardware.thermal.TemperatureThreshold;
|
||||||
import android.hardware.thermal.TemperatureType;
|
import android.hardware.thermal.TemperatureType;
|
||||||
|
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
interface IThermal {
|
interface IThermal {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import android.hardware.thermal.Temperature;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* IThermalChangedCallback send throttling notification to clients.
|
* IThermalChangedCallback send throttling notification to clients.
|
||||||
|
* @hide
|
||||||
*/
|
*/
|
||||||
@VintfStability
|
@VintfStability
|
||||||
interface IThermalChangedCallback {
|
interface IThermalChangedCallback {
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ package android.hardware.thermal;
|
|||||||
import android.hardware.thermal.TemperatureType;
|
import android.hardware.thermal.TemperatureType;
|
||||||
import android.hardware.thermal.ThrottlingSeverity;
|
import android.hardware.thermal.ThrottlingSeverity;
|
||||||
|
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable Temperature {
|
parcelable Temperature {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ package android.hardware.thermal;
|
|||||||
|
|
||||||
import android.hardware.thermal.TemperatureType;
|
import android.hardware.thermal.TemperatureType;
|
||||||
|
|
||||||
|
/* @hide */
|
||||||
@VintfStability
|
@VintfStability
|
||||||
parcelable TemperatureThreshold {
|
parcelable TemperatureThreshold {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ package android.hardware.thermal;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Device temperature types
|
* Device temperature types
|
||||||
|
* @hide
|
||||||
*/
|
*/
|
||||||
@VintfStability
|
@VintfStability
|
||||||
@Backing(type="int")
|
@Backing(type="int")
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ package android.hardware.thermal;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Device throttling severity
|
* Device throttling severity
|
||||||
|
* @hide
|
||||||
*/
|
*/
|
||||||
@VintfStability
|
@VintfStability
|
||||||
@Backing(type="int")
|
@Backing(type="int")
|
||||||
|
|||||||
Reference in New Issue
Block a user