Searched defs:configChanges (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java329 * Bit in {@link #configChanges} that indicates that the activity
331 * {@link android.R.attr#configChanges} attribute.
335 * Bit in {@link #configChanges} that indicates that the activity
337 * {@link android.R.attr#configChanges} attribute.
341 * Bit in {@link #configChanges} that indicates that the activity
343 * {@link android.R.attr#configChanges} attribute.
347 * Bit in {@link #configChanges} that indicates that the activity
349 * {@link android.R.attr#configChanges} attribute.
353 * Bit in {@link #configChanges} that indicates that the activity
355 * {@link android.R.attr#configChanges} attribut
495 public int configChanges; field in class:ActivityInfo
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java77 int configChanges = data.readInt();
78 schedulePauseActivity(b, finished, userLeaving, configChanges);
87 int configChanges = data.readInt();
88 scheduleStopActivity(b, show, configChanges);
159 int configChanges = data.readInt();
165 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config);
183 int configChanges = data.readInt();
184 scheduleDestroyActivity(b, finishing, configChanges);
653 boolean userLeaving, int configChanges) throws RemoteException {
659 data.writeInt(configChanges);
652 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
665 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
755 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
788 scheduleDestroyActivity(IBinder token, boolean finishing, int configChanges) argument
[all...]
H A DIApplicationThread.java48 int configChanges) throws RemoteException;
50 int configChanges) throws RemoteException;
63 List<Intent> pendingNewIntents, int configChanges,
67 int configChanges) throws RemoteException;
47 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
49 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
62 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
66 scheduleDestroyActivity(IBinder token, boolean finished, int configChanges) argument
H A DActivityThread.java560 boolean userLeaving, int configChanges) {
565 configChanges);
569 int configChanges) {
572 token, 0, configChanges);
634 int configChanges, boolean notResumed, Configuration config) {
636 configChanges, notResumed, config, true);
648 int configChanges) {
650 configChanges);
2967 boolean userLeaving, int configChanges) {
2975 r.activity.mConfigChangeFlags |= configChanges;
559 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
568 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
632 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
647 scheduleDestroyActivity(IBinder token, boolean finishing, int configChanges) argument
2966 handlePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
3210 handleStopActivity(IBinder token, boolean show, int configChanges) argument
3401 performDestroyActivity(IBinder token, boolean finishing, int configChanges, boolean getNonConfigInstance) argument
3494 handleDestroyActivity(IBinder token, boolean finishing, int configChanges, boolean getNonConfigInstance) argument
3553 requestRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config, boolean fromServer) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1042 * @param configChanges The mask of changes configurations as returned by
1049 public static boolean needNewResources(int configChanges, int interestingChanges) { argument
1050 return (configChanges & (interestingChanges|ActivityInfo.CONFIG_FONT_SCALE)) != 0;
H A DResources.java1543 int configChanges = 0xfffffff;
1557 configChanges = mConfiguration.updateFrom(mTmpConfig);
1558 configChanges = ActivityInfo.activityInfoConfigToNative(configChanges);
1608 clearDrawableCacheLocked(mDrawableCache, configChanges);
1609 clearDrawableCacheLocked(mColorDrawableCache, configChanges);
1624 int configChanges) {
1628 + Integer.toHexString(configChanges));
1636 configChanges, cs.getChangingConfigurations())) {
1622 clearDrawableCacheLocked( LongSparseArray<WeakReference<ConstantState>> cache, int configChanges) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java802 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) { argument
804 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
H A DActivityStack.java982 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) { argument
983 return ensureActivitiesVisibleLocked(starting, configChanges, false);
986 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges, argument
990 ensureActivitiesVisibleLocked(r, starting, null, configChanges, forceHomeShown);
998 String onlyThisProcess, int configChanges, boolean forceHomeShown) {
1001 + " configChanges=0x" + Integer.toHexString(configChanges));
1052 r.startFreezingScreenLocked(r.app, configChanges);
1098 configChanges |= r.configChangeFlags;
997 ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting, String onlyThisProcess, int configChanges, boolean forceHomeShown) argument
H A DActivityStackSupervisor.java2238 void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) { argument
2245 stack.ensureActivitiesVisibleLocked(starting, configChanges);
2252 stack.ensureActivitiesVisibleLocked(starting, configChanges, showHomeBehindStack);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java4402 int configChanges) {
4433 public void startAppFreezingScreen(IBinder token, int configChanges) { argument
4440 if (configChanges == 0 && okToDisplay()) {
4451 startAppFreezingScreenLocked(wtoken, configChanges);
4401 startAppFreezingScreenLocked(AppWindowToken wtoken, int configChanges) argument

Completed in 199 milliseconds