Searched defs:processState (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java208 int processState = data.readInt();
210 resultExtras, sync, sendingUser, processState);
219 int processState = data.readInt();
220 scheduleCreateService(token, info, compatInfo, processState);
229 int processState = data.readInt();
230 scheduleBindService(token, intent, rebind, processState);
390 int processState = data.readInt();
392 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
849 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException {
860 data.writeInt(processState);
847 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
889 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
902 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
1079 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;
116 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
114 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DActivityManager.java2123 public int processState; field in class:ActivityManager.RunningAppProcessInfo
2128 processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
2154 dest.writeInt(processState);
2170 processState = source.readInt();
H A DActivityThread.java606 public final void scheduleResumeActivity(IBinder token, int processState, argument
608 updateProcessState(processState, false);
678 boolean sync, int sendingUser, int processState) {
679 updateProcessState(processState, false);
707 ServiceInfo info, CompatibilityInfo compatInfo, int processState) {
708 updateProcessState(processState, false);
718 boolean rebind, int processState) {
719 updateProcessState(processState, false);
883 boolean sticky, int sendingUser, int processState) throws RemoteException {
884 updateProcessState(processState, fals
676 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
706 scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo, int processState) argument
717 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
881 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
1140 updateProcessState(int processState, boolean fromIpc) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java1142 int processState; field in class:ActivityManagerService.ProcessChangeItem
3321 + item.pid + " uid=" + item.uid + ": " + item.processState);
3322 observer.onProcessStateChanged(item.pid, item.uid, item.processState);
12239 outInfo.processState = app.curProcState;
18033 item.processState = app.repProcState;
18038 + " procState=" + item.processState

Completed in 2266 milliseconds