Searched refs:thisProc (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/com/android/internal/app/procstats/ |
D | ProcessStats.java | 314 ProcessState thisProc = getProcessStateLocked(pkgName, uid, vers, in add() local 316 if (thisProc.getCommonProcess() == thisProc) { in add() 318 thisProc.setMultiPackage(true); in add() 322 thisProc = thisProc.clone(now); in add() 323 pkgState.mProcesses.put(thisProc.getName(), thisProc); in add() local 325 thisProc.add(otherProc); in add() 369 ProcessState thisProc = mProcesses.get(name, uid); in add() local 371 if (thisProc == null) { in add() 373 thisProc = new ProcessState(this, pkg, uid, vers, name); in add() 374 mProcesses.put(name, uid, thisProc); in add() [all …]
|