Searched defs: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.java1384 int processState; field in class:ActivityManagerService.ProcessChangeItem
4121 + ": " + item.processState);
4122 observer.onProcessStateChanged(item.pid, item.uid, item.processState);
4180 mLocalPowerManager.updateUidProcState(item.uid, item.processState);
4242 + ": " + item.processState);
4243 observer.onUidStateChanged(item.uid, item.processState);
4247 = item.processState;
13743 outInfo.processState = app.curProcState;
20279 item.processState = app.repProcState;
20284 + " procState=" + item.processState
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java218 int processState = data.readInt();
220 resultExtras, sync, sendingUser, processState);
229 int processState = data.readInt();
230 scheduleCreateService(token, info, compatInfo, processState);
239 int processState = data.readInt();
240 scheduleBindService(token, intent, rebind, processState);
402 int processState = data.readInt();
404 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
937 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException {
948 data.writeInt(processState);
935 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
977 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
995 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
1185 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
[all...]
H A DIApplicationThread.java75 int sendingUser, int processState) throws RemoteException;
85 CompatibilityInfo compatInfo, int processState) throws RemoteException;
87 Intent intent, boolean rebind, int processState) throws RemoteException;
117 boolean sticky, int sendingUser, int processState) throws RemoteException;
73 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
84 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
86 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
115 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DActivityManager.java2908 public int processState; field in class:ActivityManager.RunningAppProcessInfo
2913 processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
2939 dest.writeInt(processState);
2955 processState = source.readInt();
H A DActivityThread.java690 public final void scheduleResumeActivity(IBinder token, int processState, argument
695 updateProcessState(processState, false);
769 boolean sync, int sendingUser, int processState) {
770 updateProcessState(processState, false);
798 ServiceInfo info, CompatibilityInfo compatInfo, int processState) {
799 updateProcessState(processState, false);
809 boolean rebind, int processState) {
810 updateProcessState(processState, false);
938 boolean sticky, int sendingUser, int processState) throws RemoteException {
939 updateProcessState(processState, fals
767 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
797 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
808 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
936 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
1241 updateProcessState(int processState, boolean fromIpc) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java376 private boolean isProcessStateForeground(int processState) { argument
377 return processState <= PROCESS_STATE_FOREGROUND_THRESHOLD;

Completed in 1749 milliseconds