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

/frameworks/base/services/core/java/com/android/server/am/
H A DUidRecord.java45 int processState; field in class:UidRecord.ChangeItem
H A DActivityManagerService.java1401 int processState; field in class:ActivityManagerService.ProcessChangeItem
4184 + ": " + item.processState);
4185 observer.onProcessStateChanged(item.pid, item.uid, item.processState);
4243 mLocalPowerManager.updateUidProcState(item.uid, item.processState);
4305 + ": " + item.processState);
4306 observer.onUidStateChanged(item.uid, item.processState);
4310 = item.processState;
13946 outInfo.processState = app.curProcState;
20607 item.processState = app.repProcState;
20612 + " procState=" + item.processState
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java219 int processState = data.readInt();
221 resultExtras, sync, sendingUser, processState);
230 int processState = data.readInt();
231 scheduleCreateService(token, info, compatInfo, processState);
240 int processState = data.readInt();
241 scheduleBindService(token, intent, rebind, processState);
403 int processState = data.readInt();
405 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
939 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException {
950 data.writeInt(processState);
937 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
979 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
997 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
1187 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
[all...]
H A DIApplicationThread.java76 int sendingUser, int processState) throws RemoteException;
86 CompatibilityInfo compatInfo, int processState) throws RemoteException;
88 Intent intent, boolean rebind, int processState) throws RemoteException;
118 boolean sticky, int sendingUser, int processState) throws RemoteException;
74 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
85 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
87 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
116 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DActivityManager.java2914 public int processState; field in class:ActivityManager.RunningAppProcessInfo
2919 processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
2945 dest.writeInt(processState);
2961 processState = source.readInt();
H A DActivityThread.java694 public final void scheduleResumeActivity(IBinder token, int processState, argument
699 updateProcessState(processState, false);
775 boolean sync, int sendingUser, int processState) {
776 updateProcessState(processState, false);
804 ServiceInfo info, CompatibilityInfo compatInfo, int processState) {
805 updateProcessState(processState, false);
815 boolean rebind, int processState) {
816 updateProcessState(processState, false);
944 boolean sticky, int sendingUser, int processState) throws RemoteException {
945 updateProcessState(processState, fals
773 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
803 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
814 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
942 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
1258 updateProcessState(int processState, boolean fromIpc) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java489 private boolean isProcessStateForeground(int processState) { argument
490 return (processState != ActivityManager.PROCESS_STATE_NONEXISTENT)
491 && (processState <= PROCESS_STATE_FOREGROUND_THRESHOLD);

Completed in 219 milliseconds