Searched refs:configChanges (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java294 * Bit in {@link #configChanges} that indicates that the activity
296 * {@link android.R.attr#configChanges} attribute.
300 * Bit in {@link #configChanges} that indicates that the activity
302 * {@link android.R.attr#configChanges} attribute.
306 * Bit in {@link #configChanges} that indicates that the activity
308 * {@link android.R.attr#configChanges} attribute.
312 * Bit in {@link #configChanges} that indicates that the activity
314 * {@link android.R.attr#configChanges} attribute.
318 * Bit in {@link #configChanges} that indicates that the activity
320 * {@link android.R.attr#configChanges} attribut
460 public int configChanges; field in class:ActivityInfo
[all...]
H A DPackageParser.java2187 a.info.configChanges = sa.getInt(
2195 a.info.configChanges = 0;
2347 info.configChanges = target.info.configChanges;
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java48 int configChanges) throws RemoteException;
50 int configChanges) throws RemoteException;
62 List<Intent> pendingNewIntents, int configChanges,
66 int configChanges) throws RemoteException;
47 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
49 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
61 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
65 scheduleDestroyActivity(IBinder token, boolean finished, int configChanges) argument
H A DApplicationThreadNative.java77 int configChanges = data.readInt();
78 schedulePauseActivity(b, finished, userLeaving, configChanges);
87 int configChanges = data.readInt();
88 scheduleStopActivity(b, show, configChanges);
157 int configChanges = data.readInt();
163 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config);
181 int configChanges = data.readInt();
182 scheduleDestroyActivity(b, finishing, configChanges);
613 boolean userLeaving, int configChanges) throws RemoteException {
619 data.writeInt(configChanges);
612 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
625 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
713 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
746 scheduleDestroyActivity(IBinder token, boolean finishing, int configChanges) argument
[all...]
H A DActivityThread.java557 boolean userLeaving, int configChanges) {
562 configChanges);
566 int configChanges) {
569 token, 0, configChanges);
626 int configChanges, boolean notResumed, Configuration config) {
628 configChanges, notResumed, config, true);
640 int configChanges) {
642 configChanges);
2940 boolean userLeaving, int configChanges) {
2948 r.activity.mConfigChangeFlags |= configChanges;
556 schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
565 scheduleStopActivity(IBinder token, boolean showWindow, int configChanges) argument
624 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
639 scheduleDestroyActivity(IBinder token, boolean finishing, int configChanges) argument
2939 handlePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges) argument
3183 handleStopActivity(IBinder token, boolean show, int configChanges) argument
3374 performDestroyActivity(IBinder token, boolean finishing, int configChanges, boolean getNonConfigInstance) argument
3467 handleDestroyActivity(IBinder token, boolean finishing, int configChanges, boolean getNonConfigInstance) argument
3526 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 DResources.java1435 int configChanges = 0xfffffff;
1449 configChanges = mConfiguration.updateFrom(mTmpConfig);
1450 configChanges = ActivityInfo.activityInfoConfigToNative(configChanges);
1500 clearDrawableCache(mDrawableCache, configChanges);
1501 clearDrawableCache(mColorDrawableCache, configChanges);
1516 int configChanges) {
1520 + Integer.toHexString(configChanges));
1528 configChanges, cs.getChangingConfigurations())) {
1514 clearDrawableCache( LongSparseArray<WeakReference<ConstantState>> cache, int configChanges) argument
H A DConfiguration.java989 * @param configChanges The mask of changes configurations as returned by
996 public static boolean needNewResources(int configChanges, int interestingChanges) { argument
997 return (configChanges & (interestingChanges|ActivityInfo.CONFIG_FONT_SCALE)) != 0;
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl97 void startAppFreezingScreen(IBinder token, int configChanges);
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java743 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) { argument
745 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
H A DActivityStack.java1242 ActivityRecord starting, String onlyThisProcess, int configChanges) {
1245 + " configChanges=0x" + Integer.toHexString(configChanges));
1283 r.startFreezingScreenLocked(r.app, configChanges);
1327 configChanges |= r.configChangeFlags;
1386 int configChanges) {
1389 ensureActivitiesVisibleLocked(r, starting, null, configChanges);
1241 ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting, String onlyThisProcess, int configChanges) argument
1385 ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) argument
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java4710 int configChanges) {
4740 public void startAppFreezingScreen(IBinder token, int configChanges) { argument
4747 if (configChanges == 0 && okToDisplay()) {
4758 startAppFreezingScreenLocked(wtoken, configChanges);
4709 startAppFreezingScreenLocked(AppWindowToken wtoken, int configChanges) argument

Completed in 605 milliseconds