Home
last modified time | relevance | path

Searched refs:ProcStatsEntry (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/apps/Settings/src/com/android/settings/applications/
H A DProcStatsData.java178 ProcStatsEntry proc = procEntries.get(i); in createPkgMap()
201 ProcStatsEntry proc = entry.mEntries.get(j); in distributeZRam()
210 ProcStatsEntry proc = entry.mEntries.get(j); in distributeZRam()
220 ProcStatsEntry procEntry = new ProcStatsEntry(entry.mPackage, 0, in distributeZRam()
233 ProcStatsEntry osEntry; in createOsEntry()
235 osEntry = new ProcStatsEntry(Utils.OS_PKG, 0, in createOsEntry()
242 osEntry = new ProcStatsEntry(Utils.OS_PKG, 0, in createOsEntry()
258 osEntry = new ProcStatsEntry(Utils.OS_PKG, 0, in createOsEntry()
272 final ProcessMap<ProcStatsEntry> entriesMap = new ProcessMap<ProcStatsEntry>(); in getProcs()
454 final static Comparator<ProcStatsEntry> sEntryCompare = new Comparator<ProcStatsEntry>() {
[all …]
H A DProcessStatsDetail.java56 import com.android.settings.applications.ProcStatsEntry.Service;
240 final static Comparator<ProcStatsEntry> sEntryCompare = new Comparator<ProcStatsEntry>() {
242 public int compare(ProcStatsEntry lhs, ProcStatsEntry rhs) {
256 ProcStatsEntry entry = mApp.mEntries.get(ie); in fillProcessesSection()
266 ProcStatsEntry entry = entries.get(ie); in fillProcessesSection()
312 final static Comparator<ProcStatsEntry.Service> sServiceCompare
313 = new Comparator<ProcStatsEntry.Service>() {
315 public int compare(ProcStatsEntry.Service lhs, ProcStatsEntry.Service rhs) {
350 ProcStatsEntry.Service pent = services.get(is); in fillServicesSection()
437 ProcStatsEntry ent = mApp.mEntries.get(i); in killProcesses()
[all …]
H A DProcStatsEntry.java36 public final class ProcStatsEntry implements Parcelable { class
59 public ProcStatsEntry(ProcessState proc, String packageName, in ProcStatsEntry() method in ProcStatsEntry
92 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() method in ProcStatsEntry
143 ArrayList<ProcStatsEntry> subProcs = new ArrayList<>(); in evaluateTargetPackage()
184 final ProcStatsEntry subProc = subProcs.get(i); in evaluateTargetPackage()
304 public static final Parcelable.Creator<ProcStatsEntry> CREATOR
305 = new Parcelable.Creator<ProcStatsEntry>() {
306 public ProcStatsEntry createFromParcel(Parcel in) {
307 return new ProcStatsEntry(in);
310 public ProcStatsEntry[] newArray(int size) {
[all …]
H A DProcStatsPackageEntry.java39 final ArrayList<ProcStatsEntry> mEntries = new ArrayList<ProcStatsEntry>();
61 in.readTypedList(mEntries, ProcStatsEntry.CREATOR); in ProcStatsPackageEntry()
82 public void addEntry(ProcStatsEntry entry) { in addEntry()
93 ProcStatsEntry entry = mEntries.get(i); in updateMetrics()
187 public ArrayList<ProcStatsEntry> getEntries() { in getEntries()
/aosp12/packages/apps/Settings/src/com/android/settings/applications/appinfo/
H A DAppMemoryPreferenceController.java31 import com.android.settings.applications.ProcStatsEntry;
68 for (ProcStatsEntry entry : pkgEntry.getEntries()) { in doInBackground()