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

/frameworks/base/core/java/android/os/health/
H A DTimerStat.java23 * A TimerStat object stores a count and a time.
26 * When possible, the other APIs in this package avoid requiring a TimerStat
28 * {@link android.os.health.HealthStats} does require TimerStat objects.
30 public final class TimerStat implements Parcelable { class in inherits:Parcelable
37 public static final Parcelable.Creator<TimerStat> CREATOR
38 = new Parcelable.Creator<TimerStat>() {
39 public TimerStat createFromParcel(Parcel in) {
40 return new TimerStat(in);
43 public TimerStat[] newArray(int size) {
44 return new TimerStat[siz
51 public TimerStat() { method in class:TimerStat
60 public TimerStat(int count, long time) { method in class:TimerStat
69 public TimerStat(Parcel in) { method in class:TimerStat
[all...]

Completed in 28 milliseconds