Searched defs:drainType (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DBatterySipper.java28 public DrainType drainType; field in class:BatterySipper
131 public BatterySipper(DrainType drainType, Uid uid, double value) { argument
133 this.drainType = drainType;
145 if (drainType != other.drainType) {
146 if (drainType == DrainType.OVERCOUNTED) {
149 } else if (other.drainType == DrainType.OVERCOUNTED) {
H A DBatteryStatsHelper.java751 private BatterySipper addEntry(DrainType drainType, long time, double power) { argument
752 BatterySipper bs = new BatterySipper(drainType, null, 0);
841 if (sipper.drainType != BatterySipper.DrainType.OVERCOUNTED
842 && sipper.drainType != BatterySipper.DrainType.SCREEN
843 && sipper.drainType != BatterySipper.DrainType.UNACCOUNTED
844 && sipper.drainType != BatterySipper.DrainType.BLUETOOTH
845 && sipper.drainType != BatterySipper.DrainType.WIFI
846 && sipper.drainType != BatterySipper.DrainType.IDLE) {
852 if (sipper.drainType == BatterySipper.DrainType.SCREEN) {
893 final BatterySipper.DrainType drainType
[all...]

Completed in 76 milliseconds