Home
last modified time | relevance | path

Searched refs:processState (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/app/
DIApplicationThread.java76 int sendingUser, int processState) throws RemoteException; in scheduleReceiver() argument
86 CompatibilityInfo compatInfo, int processState) throws RemoteException; in scheduleCreateService() argument
88 Intent intent, boolean rebind, int processState) throws RemoteException; in scheduleBindService() argument
118 boolean sticky, int sendingUser, int processState) throws RemoteException; in scheduleRegisteredReceiver() argument
DApplicationThreadNative.java219 int processState = data.readInt(); in onTransact() local
221 resultExtras, sync, sendingUser, processState); in onTransact()
230 int processState = data.readInt(); in onTransact() local
231 scheduleCreateService(token, info, compatInfo, processState); in onTransact()
240 int processState = data.readInt(); in onTransact() local
241 scheduleBindService(token, intent, rebind, processState); in onTransact()
403 int processState = data.readInt(); in onTransact() local
405 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState); in onTransact()
939 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException { in scheduleReceiver() argument
950 data.writeInt(processState); in scheduleReceiver()
[all …]
DActivityThread.java695 public final void scheduleResumeActivity(IBinder token, int processState, in scheduleResumeActivity() argument
700 updateProcessState(processState, false); in scheduleResumeActivity()
776 boolean sync, int sendingUser, int processState) { in scheduleReceiver() argument
777 updateProcessState(processState, false); in scheduleReceiver()
805 ServiceInfo info, CompatibilityInfo compatInfo, int processState) { in scheduleCreateService() argument
806 updateProcessState(processState, false); in scheduleCreateService()
816 boolean rebind, int processState) { in scheduleBindService() argument
817 updateProcessState(processState, false); in scheduleBindService()
945 boolean sticky, int sendingUser, int processState) throws RemoteException { in scheduleRegisteredReceiver() argument
946 updateProcessState(processState, false); in scheduleRegisteredReceiver()
[all …]
DActivityManager.java2954 public int processState; field in ActivityManager.RunningAppProcessInfo
2959 processState = PROCESS_STATE_IMPORTANT_FOREGROUND; in RunningAppProcessInfo()
2985 dest.writeInt(processState); in writeToParcel()
3001 processState = source.readInt(); in readFromParcel()
/frameworks/base/services/core/java/com/android/server/am/
DUidRecord.java45 int processState; field in UidRecord.ChangeItem
DActivityManagerService.java1411 int processState; field in ActivityManagerService.ProcessChangeItem
4193 + ": " + item.processState); in dispatchProcessesChanged()
4194 observer.onProcessStateChanged(item.pid, item.uid, item.processState); in dispatchProcessesChanged()
4252 mLocalPowerManager.updateUidProcState(item.uid, item.processState); in dispatchUidsChanged()
4314 + ": " + item.processState); in dispatchUidsChanged()
4315 observer.onUidStateChanged(item.uid, item.processState); in dispatchUidsChanged()
4319 = item.processState; in dispatchUidsChanged()
14025 outInfo.processState = app.curProcState; in fillInProcMemInfo()
20686 item.processState = app.repProcState; in applyOomAdjLocked()
20691 + " procState=" + item.processState in applyOomAdjLocked()
[all …]
/frameworks/base/services/core/java/com/android/server/pm/
DShortcutService.java498 private boolean isProcessStateForeground(int processState) { in isProcessStateForeground() argument
499 return (processState != ActivityManager.PROCESS_STATE_NONEXISTENT) in isProcessStateForeground()
500 && (processState <= PROCESS_STATE_FOREGROUND_THRESHOLD); in isProcessStateForeground()