Merge "power/stats: Add more energy consumer types"

This commit is contained in:
Treehugger Robot
2021-02-17 22:04:34 +00:00
committed by Gerrit Code Review
2 changed files with 11 additions and 3 deletions

View File

@@ -34,6 +34,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
OTHER = 0,
CPU_CLUSTER = 1,
DISPLAY = 2,
BLUETOOTH = 1,
CPU_CLUSTER = 2,
DISPLAY = 3,
GNSS = 4,
MOBILE_RADIO = 5,
WIFI = 6,
}

View File

@@ -20,6 +20,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
OTHER,
BLUETOOTH,
CPU_CLUSTER,
DISPLAY,
}
GNSS,
MOBILE_RADIO,
WIFI,
}