Home
last modified time | relevance | path

Searched refs:thisProc (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessStats.java308 if (thisProc.getCommonProcess() == thisProc) { in add()
310 thisProc.setMultiPackage(true); in add()
314 thisProc = thisProc.clone(now); in add()
315 pkgState.mProcesses.put(thisProc.getName(), thisProc); in add() local
317 thisProc.add(otherProc); in add()
349 ProcessState thisProc = mProcesses.get(name, uid); in add() local
351 if (thisProc == null) { in add()
353 thisProc = new ProcessState(this, pkg, uid, vers, name); in add()
354 mProcesses.put(name, uid, thisProc); in add()
357 thisState.mProcesses.put(name, thisProc); in add()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java14965 ProcessRecord thisProc = procs.valueAt(i); in findProcessLOSP() local
14966 if (thisProc.userId == userId) { in findProcessLOSP()
14967 proc = thisProc; in findProcessLOSP()