Home | History | Annotate | Download | only in os

Lines Matching defs:BatteryProperties

21 public class BatteryProperties implements Parcelable {
36 public BatteryProperties() {
39 public void set(BatteryProperties other) {
57 * frameworks/native/services/batteryservice/BatteryProperties.cpp
60 private BatteryProperties(Parcel p) {
92 public static final Parcelable.Creator<BatteryProperties> CREATOR
93 = new Parcelable.Creator<BatteryProperties>() {
94 public BatteryProperties createFromParcel(Parcel p) {
95 return new BatteryProperties(p);
98 public BatteryProperties[] newArray(int size) {
99 return new BatteryProperties[size];