Home | History | Annotate | Download | only in applications

Lines Matching refs:ent

289                         ProcStatsEntry ent = entriesMap.get(proc.getName(), proc.getUid());
290 if (ent == null) {
291 ent = new ProcStatsEntry(proc, st.mPackageName, bgTotals, runTotals,
293 if (ent.mRunWeight > 0) {
296 + ProcessStatsUi.makeDuration(ent.mRunDuration) + " ("
297 + ((((double) ent.mRunDuration) / memTotalTime) * 100)
299 + " pss=" + ent.mAvgRunMem);
300 entriesMap.put(proc.getName(), proc.getUid(), ent);
301 procEntries.add(ent);
304 ent.addPackage(st.mPackageName);
324 ProcStatsEntry ent = entriesMap.get(ss.getProcessName(),
326 if (ent != null) {
330 ent.addService(ss);