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

/frameworks/base/core/java/android/os/
H A DBatteryProperty.java29 public class BatteryProperty implements Parcelable { class in inherits:Parcelable
35 public BatteryProperty() { method in class:BatteryProperty
48 * frameworks/native/services/batteryservice/BatteryProperty.cpp
51 private BatteryProperty(Parcel p) { method in class:BatteryProperty
63 public static final Parcelable.Creator<BatteryProperty> CREATOR
64 = new Parcelable.Creator<BatteryProperty>() {
65 public BatteryProperty createFromParcel(Parcel p) {
66 return new BatteryProperty(p);
69 public BatteryProperty[] newArray(int size) {
70 return new BatteryProperty[siz
[all...]
/frameworks/native/include/batteryservice/
H A DBatteryService.h47 // must be kept in sync with definitions in BatteryProperty.java
49 BATTERY_PROP_CHARGE_COUNTER = 1, // equals BatteryProperty.CHARGE_COUNTER constant
50 BATTERY_PROP_CURRENT_NOW = 2, // equals BatteryProperty.CURRENT_NOW constant
51 BATTERY_PROP_CURRENT_AVG = 3, // equals BatteryProperty.CURRENT_AVG constant
52 BATTERY_PROP_CAPACITY = 4, // equals BatteryProperty.CAPACITY constant
53 BATTERY_PROP_ENERGY_COUNTER = 5, // equals BatteryProperty.ENERGY_COUNTER constant
73 struct BatteryProperty { struct in namespace:android

Completed in 67 milliseconds