Searched defs:procState (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DProcessMemInfo.java23 final int procState; field in class:ProcessMemInfo
34 procState = _procState;
H A DProcessList.java352 String procState;
355 procState = "N ";
358 procState = "P ";
361 procState = "PU";
364 procState = "T ";
367 procState = "IF";
370 procState = "IB";
373 procState = "BU";
376 procState = "HW";
379 procState
562 computeNextPssTime(int procState, boolean first, boolean test, boolean sleeping, long now) argument
[all...]
H A DActivityManagerService.java1864 int procState;
1875 procState = proc.pssProcState;
1877 if (proc.thread != null && procState == proc.setProcState
1889 if (pss != 0 && proc.thread != null && proc.setProcState == procState
1892 recordPssSample(proc, procState, pss, tmp[0],
12210 static int procStateToImportance(int procState, int memAdj, argument
12212 int imp = ActivityManager.RunningAppProcessInfo.procStateToImportance(procState);
12236 int procState = app.curProcState;
12237 outInfo.importance = procStateToImportance(procState, adj, outInfo);
13703 String procState
14497 appendBasicMemEntry(StringBuilder sb, int oomAdj, int procState, long pss, long memtrack, String name) argument
17575 recordPssSample(ProcessRecord proc, int procState, long pss, long uss, long now) argument
17593 requestPssLocked(ProcessRecord proc, int procState) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java119 int procState = data.readInt();
122 scheduleResumeActivity(b, procState, isForward, resumeArgs);
147 int procState = data.readInt();
157 voiceInteractor, procState, state, persistentState, ri, pi,
743 public final void scheduleResumeActivity(IBinder token, int procState, boolean isForward, argument
749 data.writeInt(procState);
770 String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state,
784 data.writeInt(procState);
768 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
H A DIApplicationThread.java58 void scheduleResumeActivity(IBinder token, int procState, boolean isForward, Bundle resumeArgs) argument
63 String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state,
61 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
H A DActivityManager.java2034 public static int procStateToImportance(int procState) { argument
2035 if (procState >= ActivityManager.PROCESS_STATE_HOME) {
2037 } else if (procState >= ActivityManager.PROCESS_STATE_SERVICE) {
2039 } else if (procState > ActivityManager.PROCESS_STATE_HEAVY_WEIGHT) {
2041 } else if (procState >= ActivityManager.PROCESS_STATE_IMPORTANT_BACKGROUND) {
2043 } else if (procState >= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND) {
H A DActivityThread.java623 String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state,
628 updateProcessState(procState, false);
621 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java6161 int procState;
6163 procState = PROCESS_STATE_FOREGROUND;
6165 procState = PROCESS_STATE_ACTIVE;
6167 procState = PROCESS_STATE_RUNNING;
6169 updateRealProcessStateLocked(procName, procState, elapsedRealtimeMs);
6172 public void updateRealProcessStateLocked(String procName, int procState, argument
6175 if (proc.mProcessState != procState) {
6177 if (procState < proc.mProcessState) {
6181 changed = mProcessState > procState;
6188 proc.mProcessState = procState;
[all...]

Completed in 965 milliseconds