のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

pss

D/ActivityManager: Requesting PSS of: ProcessRecord{d148fde 5260:jp.dip.sys1.aozora/u0a101}
D/ActivityManager: Requesting PSS of: ProcessRecord{7e939fd 13747:com.android.launcher3/u0a14}
D/ActivityManager: Requesting PSS of: ProcessRecord{c300007 4371:com.android.deskclock/u0a37}
D/ActivityManager: Requesting PSS of: ProcessRecord{5e3e016 4107:com.android.printspooler/u0a52}
D/ActivityManager: Requesting PSS of: ProcessRecord{39e4651 4091:com.android.cellbroadcastreceiver/u0a4}
D/ActivityManager: Requesting PSS of: ProcessRecord{8623b71 4068:com.google.android.apps.photos:CameraShortcut/u0a90}

oesf.biz - このウェブサイトは販売用です! -&nbspoesf リソースおよび情報

   19809     /**
   19810      * Schedule PSS collection of a process.
   19811      */
   19812     void requestPssLocked(ProcessRecord proc, int procState) {
   19813         if (mPendingPssProcesses.contains(proc)) {
   19814             return;
   19815         }
   19816         if (mPendingPssProcesses.size() == 0) {
   19817             mBgHandler.sendEmptyMessage(COLLECT_PSS_BG_MSG);
   19818         }
   19819         if (DEBUG_PSS) Slog.d(TAG_PSS, "Requesting PSS of: " + proc);
   19820         proc.pssProcState = procState;
   19821         mPendingPssProcesses.add(proc);
   19822     }
   19823