Searched defs:pss (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp97 unsigned start = 0, size = 0, resident = 0, pss = 0; local
152 pss = temp;
172 stats->nativePss += pss;
176 stats->dalvikPss += pss;
182 stats->otherPss += pss;
H A Dandroid_util_Process.cpp834 jlong pss = 0; local
838 pss += v;
845 return pss * 1024;
/frameworks/base/services/java/com/android/server/
H A DWatchdog.java181 boolean checkLocked(long curTime, int pid, int pss) { argument
182 mLastPss = pss;
238 // During the last pass we collected pss information, so
241 if (localLOGV) Slog.v(TAG, "Received global pss, logging.");
248 // During the last pass we collected pss information, so
251 if (localLOGV) Slog.v(TAG, "Have pss, checking memory.");
256 // During the last pass we collected pss information, so
259 if (localLOGV) Slog.v(TAG, "Have global pss, logging.");
282 // It is now time to collect pss information. This
433 public void reportPss(PssRequestor req, String name, int pss) { argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1028 int pss = data.readInt();
1029 reportPss(app, pss);
2479 public void reportPss(IApplicationThread caller, int pss) throws RemoteException { argument
2483 data.writeInt(pss);
H A DIActivityManager.java250 public void reportPss(IApplicationThread caller, int pss) throws RemoteException; argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java8560 public void reportPss(IApplicationThread caller, int pss) { argument
8572 callerApp.lastPss = pss;
8576 Watchdog.getInstance().reportPss(req, name, pss);
8653 //Slog.i(TAG, "Proc " + proc + ": pss=" + proc.lastPss);

Completed in 277 milliseconds