Lines Matching defs:BatteryStatsImpl

106 public class BatteryStatsImpl extends BatteryStats {
107 private static final String TAG = "BatteryStatsImpl";
188 synchronized (BatteryStatsImpl.this) {
203 synchronized (BatteryStatsImpl.this) {
255 final SparseArray<BatteryStatsImpl.Uid> mUidStats = new SparseArray<>();
622 public BatteryStatsImpl() {
626 public BatteryStatsImpl(Clocks clocks) {
1713 public void addDuration(BatteryStatsImpl stats, long durationMillis) {
1724 public void abortLastDuration(BatteryStatsImpl stats) {
2942 final BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
2980 final BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
4687 BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
4704 BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
4803 BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
4820 BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
4881 BatteryStatsImpl.Uid uid = mUidStats.valueAt(i);
5539 private static void detachTimerIfNotNull(BatteryStatsImpl.Timer timer) {
5545 private static boolean resetTimerIfNotNull(BatteryStatsImpl.Timer timer,
5578 * BatteryStatsImpl that we are associated with.
5580 protected BatteryStatsImpl mBsi;
5708 public Uid(BatteryStatsImpl bsi, int uid) {
7377 * BatteryStatsImpl that we are associated with.
7379 protected BatteryStatsImpl mBsi;
7382 * BatteryStatsImpl that we are associated with.
7407 public Wakelock(BatteryStatsImpl bsi, Uid uid) {
7414 * proper timer pool from the given BatteryStatsImpl object.
7430 * proper timer pool from the given BatteryStatsImpl object.
7512 * BatteryStatsImpl that we are associated with.
7514 protected BatteryStatsImpl mBsi;
7524 public Sensor(BatteryStatsImpl bsi, Uid uid, int handle) {
7584 * BatteryStatsImpl that we are associated with.
7586 protected BatteryStatsImpl mBsi;
7690 public Proc(BatteryStatsImpl bsi, String name) {
7926 * BatteryStatsImpl that we are associated with.
7928 protected BatteryStatsImpl mBsi;
7940 public Pkg(BatteryStatsImpl bsi) {
8015 * BatteryStatsImpl that we are associated with.
8017 protected BatteryStatsImpl mBsi;
8117 public Serv(BatteryStatsImpl bsi) {
8227 public BatteryStatsImpl getBatteryStats() {
8584 public BatteryStatsImpl getBatteryStats() {
8593 public BatteryStatsImpl(File systemDir, Handler handler, ExternalStatsSync externalSync) {
8597 public BatteryStatsImpl(File systemDir, Handler handler, ExternalStatsSync externalSync,
8602 public BatteryStatsImpl(Clocks clocks, File systemDir, Handler handler,
8693 public BatteryStatsImpl(Parcel p) {
8697 public BatteryStatsImpl(Clocks clocks, Parcel p) {
12112 for (Map.Entry<String, BatteryStatsImpl.Uid.Pkg> ent
12126 BatteryStatsImpl.Uid.Pkg.Serv ss = ps.mServiceStats.valueAt(is);
12487 public static final Parcelable.Creator<BatteryStatsImpl> CREATOR =
12488 new Parcelable.Creator<BatteryStatsImpl>() {
12489 public BatteryStatsImpl createFromParcel(Parcel in) {
12490 return new BatteryStatsImpl(in);
12493 public BatteryStatsImpl[] newArray(int size) {
12494 return new BatteryStatsImpl[size];