Home | History | Annotate | Download | only in launcher3

Lines Matching defs:mMemInfo

137         private MemoryTracker.ProcessMemInfo mMemInfo;
173 mMemInfo = mMemoryService.getMemInfo(mPid);
174 if (mMemInfo == null) {
185 long sec = mMemInfo.getUptime() / 1000;
215 // "MSG_UPDATE pss=" + mMemInfo.currentPss);
221 + " P=" + mMemInfo.currentPss
222 + " U=" + mMemInfo.currentUss
250 if (mMemInfo == null) return;
252 final int N = mMemInfo.pss.length;
255 final float scale = (float) h / mMemInfo.max;
261 c.drawRect(x, h - scale * mMemInfo.pss[i], x + barWidth, h, pssPaint);
262 c.drawRect(x, h - scale * mMemInfo.uss[i], x + barWidth, h, ussPaint);
264 x = mMemInfo.head * barStep;