Merge "Add @hide annotation to thermal AIDL interfaces"

This commit is contained in:
Xiang Wang
2022-12-06 04:23:13 +00:00
committed by Gerrit Code Review
16 changed files with 16 additions and 0 deletions

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@VintfStability
parcelable CoolingDevice {
android.hardware.thermal.CoolingType type;

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@Backing(type="int") @VintfStability
enum CoolingType {
FAN = 0,

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@VintfStability
interface IThermal {
android.hardware.thermal.CoolingDevice[] getCoolingDevices();

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@VintfStability
interface IThermalChangedCallback {
oneway void notifyThrottling(in android.hardware.thermal.Temperature temperature);

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@VintfStability
parcelable Temperature {
android.hardware.thermal.TemperatureType type;

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@VintfStability
parcelable TemperatureThreshold {
android.hardware.thermal.TemperatureType type;

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@Backing(type="int") @VintfStability
enum TemperatureType {
UNKNOWN = -1,

View File

@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.thermal;
/* @hide */
@Backing(type="int") @VintfStability
enum ThrottlingSeverity {
NONE = 0,

View File

@@ -18,6 +18,7 @@ package android.hardware.thermal;
import android.hardware.thermal.CoolingType;
/* @hide */
@VintfStability
parcelable CoolingDevice {
/**

View File

@@ -18,6 +18,7 @@ package android.hardware.thermal;
/**
* Device cooling device types
* @hide
*/
@VintfStability
@Backing(type="int")

View File

@@ -23,6 +23,7 @@ import android.hardware.thermal.Temperature;
import android.hardware.thermal.TemperatureThreshold;
import android.hardware.thermal.TemperatureType;
/* @hide */
@VintfStability
interface IThermal {
/**

View File

@@ -20,6 +20,7 @@ import android.hardware.thermal.Temperature;
/**
* IThermalChangedCallback send throttling notification to clients.
* @hide
*/
@VintfStability
interface IThermalChangedCallback {

View File

@@ -19,6 +19,7 @@ package android.hardware.thermal;
import android.hardware.thermal.TemperatureType;
import android.hardware.thermal.ThrottlingSeverity;
/* @hide */
@VintfStability
parcelable Temperature {
/**

View File

@@ -18,6 +18,7 @@ package android.hardware.thermal;
import android.hardware.thermal.TemperatureType;
/* @hide */
@VintfStability
parcelable TemperatureThreshold {
/**

View File

@@ -18,6 +18,7 @@ package android.hardware.thermal;
/**
* Device temperature types
* @hide
*/
@VintfStability
@Backing(type="int")

View File

@@ -18,6 +18,7 @@ package android.hardware.thermal;
/**
* Device throttling severity
* @hide
*/
@VintfStability
@Backing(type="int")