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

/frameworks/base/services/java/com/android/server/wm/
H A DWindowAnimator.java654 void setPendingLayoutChanges(final int displayId, final int changes) { argument
655 mService.getDisplayContentLocked(displayId).pendingLayoutChanges |= changes;
658 void setAppLayoutChanges(final AppWindowAnimator appAnimator, final int changes, String s) { argument
659 // Used to track which displays layout changes have been done.
665 setPendingLayoutChanges(displayId, changes);
670 displays.put(displayId, changes);
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java3179 final int changes = oldConfig.diff(newConfig);
3180 if (changes == 0 && !r.forceNewConfig) {
3196 // Figure out how to handle the changes between the configurations.
3199 + Integer.toHexString(changes) + ", handles=0x"
3203 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
3205 r.configChangeFlags |= changes;
3243 // configuration, since we always send configuration changes to all
3260 int changes, boolean andResume) {
3282 changes, !andResume, new Configuration(mService.mConfiguration));
3259 relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) argument
H A DActivityManagerService.java885 * The last total number of process we have, to determine if changes actually look
929 int changes; field in class:ActivityManagerService.ProcessChangeItem
2892 if (DEBUG_PROCESS_OBSERVERS) Slog.i(TAG, "*** Delivering " + N + " process changes");
2903 if ((item.changes&ProcessChangeItem.CHANGE_ACTIVITIES) != 0) {
2910 if ((item.changes&ProcessChangeItem.CHANGE_IMPORTANCE) != 0) {
13805 int changes = 0;
13809 changes = newConfig.updateFrom(values);
13810 if (changes != 0) {
13815 EventLog.writeEvent(EventLogTags.CONFIGURATION_CHANGED, changes);
13829 Slog.i(TAG, "Config changes
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp659 uint32_t changes = 0; local
665 changes |= InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT;
669 if (changes) {
670 mInputManager->getReader()->requestRefreshConfiguration(changes);
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp861 const InputReaderConfiguration* config, uint32_t changes) {
1789 // Special case: if orientation changes while key is down, we still emit the same keycode
860 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
/frameworks/base/core/java/android/provider/
H A DSettings.java1172 * useful for monitoring changes with a ContentObserver.
1500 public static boolean hasInterestingConfigurationChanges(int changes) { argument
1501 return (changes&ActivityInfo.CONFIG_FONT_SCALE) != 0;
1856 * Determines which streams are affected by ringer mode changes. The
2933 * useful for monitoring changes with a ContentObserver.
6013 * useful for monitoring changes with a ContentObserver.
6268 * the folder changes with the locale (via {@link #getLabelForFolder}) but
/frameworks/base/services/input/
H A DInputReader.cpp257 uint32_t changes = mConfigurationChangesToRefresh; local
258 if (changes) {
261 refreshConfigurationLocked(changes);
494 void InputReader::refreshConfigurationLocked(uint32_t changes) { argument
498 if (changes) {
499 ALOGI("Reconfiguring input devices. changes=0x%08x", changes);
502 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) {
507 device->configure(now, &mConfig, changes);
663 void InputReader::requestRefreshConfiguration(uint32_t changes) { argument
903 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
1744 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2001 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2289 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2722 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
6235 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
[all...]

Completed in 374 milliseconds