Home | History | Annotate | Download | only in app

Lines Matching refs:OpEntry

591         private final List<OpEntry> mEntries;
593 public PackageOps(String packageName, int uid, List<OpEntry> entries) {
607 public List<OpEntry> getOps() {
629 mEntries = new ArrayList<OpEntry>();
632 mEntries.add(OpEntry.CREATOR.createFromParcel(source));
651 public static class OpEntry implements Parcelable {
658 public OpEntry(int op, int mode, long time, long rejectTime, int duration) {
704 OpEntry(Parcel source) {
712 public static final Creator<OpEntry> CREATOR = new Creator<OpEntry>() {
713 @Override public OpEntry createFromParcel(Parcel source) {
714 return new OpEntry(source);
717 @Override public OpEntry[] newArray(int size) {
718 return new OpEntry[size];