Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/
DProcessStats.java282 ProcessState thisProc = getProcessStateLocked(pkgName, uid, vers, in add() local
284 if (thisProc.mCommonProcess == thisProc) { in add()
286 thisProc.mMultiPackage = true; in add()
290 thisProc = thisProc.clone(thisProc.mPackage, now); in add()
291 pkgState.mProcesses.put(thisProc.mName, thisProc); in add()
293 thisProc.add(otherProc); in add()
314 ProcessState thisProc = mProcesses.get(otherProc.mName, uid); in add() local
316 if (thisProc == null) { in add()
318 thisProc = new ProcessState(this, otherProc.mPackage, uid, otherProc.mVersion, in add()
320 mProcesses.put(otherProc.mName, uid, thisProc); in add()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java19541 ProcessRecord thisProc = procs.valueAt(i); in findProcessLocked() local
19542 if (thisProc.userId == userId) { in findProcessLocked()
19543 proc = thisProc; in findProcessLocked()