Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DIApplicationThread.java74 int sendingUser, int processState) throws RemoteException; in scheduleReceiver() argument
84 CompatibilityInfo compatInfo, int processState) throws RemoteException; in scheduleCreateService() argument
86 Intent intent, boolean rebind, int processState) throws RemoteException; in scheduleBindService() argument
115 boolean sticky, int sendingUser, int processState) throws RemoteException; in scheduleRegisteredReceiver() argument
DApplicationThreadNative.java216 int processState = data.readInt(); in onTransact() local
218 resultExtras, sync, sendingUser, processState); in onTransact()
227 int processState = data.readInt(); in onTransact() local
228 scheduleCreateService(token, info, compatInfo, processState); in onTransact()
237 int processState = data.readInt(); in onTransact() local
238 scheduleBindService(token, intent, rebind, processState); in onTransact()
398 int processState = data.readInt(); in onTransact() local
400 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState); in onTransact()
879 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException { in scheduleReceiver() argument
890 data.writeInt(processState); in scheduleReceiver()
[all …]
DActivityManager.java2218 public int processState; field in ActivityManager.RunningAppProcessInfo
2223 processState = PROCESS_STATE_IMPORTANT_FOREGROUND; in RunningAppProcessInfo()
2249 dest.writeInt(processState); in writeToParcel()
2265 processState = source.readInt(); in readFromParcel()
DActivityThread.java614 public final void scheduleResumeActivity(IBinder token, int processState, in scheduleResumeActivity() argument
616 updateProcessState(processState, false); in scheduleResumeActivity()
690 boolean sync, int sendingUser, int processState) { in scheduleReceiver() argument
691 updateProcessState(processState, false); in scheduleReceiver()
719 ServiceInfo info, CompatibilityInfo compatInfo, int processState) { in scheduleCreateService() argument
720 updateProcessState(processState, false); in scheduleCreateService()
730 boolean rebind, int processState) { in scheduleBindService() argument
731 updateProcessState(processState, false); in scheduleBindService()
895 boolean sticky, int sendingUser, int processState) throws RemoteException { in scheduleRegisteredReceiver() argument
896 updateProcessState(processState, false); in scheduleRegisteredReceiver()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DUidRecord.java35 int processState; field in UidRecord.ChangeItem
DActivityManagerService.java1216 int processState; field in ActivityManagerService.ProcessChangeItem
3705 + ": " + item.processState); in dispatchProcessesChanged()
3706 observer.onProcessStateChanged(item.pid, item.uid, item.processState); in dispatchProcessesChanged()
3761 mLocalPowerManager.updateUidProcState(item.uid, item.processState); in dispatchUidsChanged()
3781 + ": " + item.processState); in dispatchUidsChanged()
3782 observer.onUidStateChanged(item.uid, item.processState); in dispatchUidsChanged()
12714 outInfo.processState = app.curProcState; in fillInProcMemInfo()
18759 item.processState = app.repProcState; in applyOomAdjLocked()
18764 + " procState=" + item.processState in applyOomAdjLocked()
18795 uidRec.pendingChange.processState = uidRec.setProcState; in enqueueUidChangeLocked()