Searched defs:overrideConfig (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DResourcesKey.java55 @Nullable Configuration overrideConfig,
62 mOverrideConfiguration = overrideConfig != null ? overrideConfig : Configuration.EMPTY;
50 ResourcesKey(@ullable String resDir, @Nullable String[] splitResDirs, @Nullable String[] overlayDirs, @Nullable String[] libDirs, int displayId, @Nullable Configuration overrideConfig, @Nullable CompatibilityInfo compatInfo) argument
/frameworks/base/core/java/android/app/
H A DResourcesManager.java95 public final Configuration overrideConfig = new Configuration(); field in class:ResourcesManager.ActivityResources
298 if (DEBUG) Slog.v(TAG, "Applied overrideConfig=" + key.mOverrideConfiguration);
455 * @param overrideConfig The configuration to apply on top of the base configuration. Can be
469 @Nullable Configuration overrideConfig,
481 overrideConfig != null ? new Configuration(overrideConfig) : null, // Copy
496 updateResourcesForActivity(activityToken, overrideConfig);
536 && !activityResources.overrideConfig.equals(Configuration.EMPTY)) {
537 final Configuration temp = new Configuration(activityResources.overrideConfig);
602 * (resDir, splitResDirs, overrideConfig) fo
463 createBaseActivityResources(@onNull IBinder activityToken, @Nullable String resDir, @Nullable String[] splitResDirs, @Nullable String[] overlayDirs, @Nullable String[] libDirs, int displayId, @Nullable Configuration overrideConfig, @NonNull CompatibilityInfo compatInfo, @Nullable ClassLoader classLoader) argument
625 getResources(@ullable IBinder activityToken, @Nullable String resDir, @Nullable String[] splitResDirs, @Nullable String[] overlayDirs, @Nullable String[] libDirs, int displayId, @Nullable Configuration overrideConfig, @NonNull CompatibilityInfo compatInfo, @Nullable ClassLoader classLoader) argument
660 updateResourcesForActivity(@onNull IBinder activityToken, @Nullable Configuration overrideConfig) argument
[all...]
H A DApplicationThreadNative.java146 Configuration overrideConfig = null;
148 overrideConfig = Configuration.CREATOR.createFromParcel(data);
163 scheduleLaunchActivity(intent, b, ident, info, curConfig, overrideConfig, compatInfo,
178 Configuration overrideConfig = null;
180 overrideConfig = Configuration.CREATOR.createFromParcel(data);
183 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config, overrideConfig,
419 Configuration overrideConfig = null;
421 overrideConfig = Configuration.CREATOR.createFromParcel(data);
424 scheduleActivityConfigurationChanged(b, overrideConfig, reportToActivity);
849 ActivityInfo info, Configuration curConfig, Configuration overrideConfig,
848 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
888 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config, Configuration overrideConfig, boolean preserveWindow) argument
1214 scheduleActivityConfigurationChanged(IBinder token, Configuration overrideConfig, boolean reportToActivity) argument
[all...]
H A DIApplicationThread.java61 ActivityInfo info, Configuration curConfig, Configuration overrideConfig,
68 Configuration config, Configuration overrideConfig, boolean preserveWindow)
119 void scheduleActivityConfigurationChanged(IBinder token, Configuration overrideConfig, argument
60 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
66 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config, Configuration overrideConfig, boolean preserveWindow) argument
H A DActivityThread.java327 Configuration overrideConfig; field in class:ActivityThread.ActivityClientRecord
634 final Configuration overrideConfig; field in class:ActivityThread.ActivityConfigChangeData
637 overrideConfig = config;
710 ActivityInfo info, Configuration curConfig, Configuration overrideConfig,
738 r.overrideConfig = overrideConfig;
748 Configuration overrideConfig, boolean preserveWindow) {
750 configChanges, notResumed, config, overrideConfig, true, preserveWindow);
951 IBinder token, Configuration overrideConfig, boolean reportToActivity) {
953 new ActivityConfigChangeData(token, overrideConfig), reportToActivit
709 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
745 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config, Configuration overrideConfig, boolean preserveWindow) argument
950 scheduleActivityConfigurationChanged( IBinder token, Configuration overrideConfig, boolean reportToActivity) argument
4258 requestRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config, Configuration overrideConfig, boolean fromServer, boolean preserveWindow) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java730 * @param overrideConfig override configuration to consider when generating
740 int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig);
738 addStartingWindow(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig) argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java2545 int icon, int logo, int windowFlags, Configuration overrideConfig) {
2570 if (overrideConfig != null && overrideConfig != EMPTY) {
2572 + " on overrideConfig" + overrideConfig + " for starting window");
2573 final Context overrideContext = context.createConfigurationContext(overrideConfig);
2582 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow: apply overrideConfig"
2583 + overrideConfig + " to starting window resId=" + resId);
2543 addStartingWindow(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig) argument

Completed in 302 milliseconds