HomeSort by relevance Sort by last modified time
    Searched refs:ProcStatsEntry (Results 1 - 4 of 4) sorted by null

  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 32 private ProcStatsEntry mEntry;
54 public void init(Drawable icon, ProcStatsEntry entry) {
59 public ProcStatsEntry getEntry() {
ProcessStatsDetail.java 63 private ProcStatsEntry mEntry;
82 mEntry = (ProcStatsEntry)args.getParcelable(EXTRA_ENTRY);
205 final static Comparator<ProcStatsEntry.Service> sServiceCompare
206 = new Comparator<ProcStatsEntry.Service>() {
208 public int compare(ProcStatsEntry.Service lhs, ProcStatsEntry.Service rhs) {
218 final static Comparator<ArrayList<ProcStatsEntry.Service>> sServicePkgCompare
219 = new Comparator<ArrayList<ProcStatsEntry.Service>>() {
221 public int compare(ArrayList<ProcStatsEntry.Service> lhs,
222 ArrayList<ProcStatsEntry.Service> rhs)
    [all...]
ProcStatsEntry.java 33 public final class ProcStatsEntry implements Parcelable {
34 private static final String TAG = "ProcStatsEntry";
57 public ProcStatsEntry(ProcessStats.ProcessState proc, String packageName,
74 public ProcStatsEntry(Parcel in) {
103 ProcessStats.ProcessDataCollection totals, Comparator<ProcStatsEntry> compare,
111 ArrayList<ProcStatsEntry> subProcs = new ArrayList<ProcStatsEntry>();
130 subProcs.add(new ProcStatsEntry(pkgProc, pkgState.mPackageName, totals, useUss,
301 public static final Parcelable.Creator<ProcStatsEntry> CREATOR
302 = new Parcelable.Creator<ProcStatsEntry>() {
    [all...]
ProcessStatsUi.java 75 final static Comparator<ProcStatsEntry> sEntryCompare = new Comparator<ProcStatsEntry>() {
77 public int compare(ProcStatsEntry lhs, ProcStatsEntry rhs) {
611 ArrayList<ProcStatsEntry> entries = new ArrayList<ProcStatsEntry>();
618 procs.add(new ProcStatsEntry(rawProcs.get(i), totals));
624 final ProcessMap<ProcStatsEntry> entriesMap = new ProcessMap<ProcStatsEntry>();
641 ProcStatsEntry ent = entriesMap.get(proc.mName, proc.mUid)
    [all...]

Completed in 79 milliseconds