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

/frameworks/base/services/java/com/android/server/wm/
H A DWindowAnimator.java52 // Layout changes for individual Displays. Indexed by displayId.
917 void setPendingLayoutChanges(final int displayId, final int changes) { argument
918 mPendingLayoutChanges.put(displayId, mPendingLayoutChanges.get(displayId) | changes);
921 void setAppLayoutChanges(final AppWindowAnimator appAnimator, final int changes, String s) { argument
922 // Used to track which displays layout changes have been done.
928 setPendingLayoutChanges(displayId, changes);
933 displays.put(displayId, changes);
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java4603 final int changes = oldConfig.diff(newConfig);
4604 if (changes == 0 && !r.forceNewConfig) {
4620 // Figure out how to handle the changes between the configurations.
4623 + Integer.toHexString(changes) + ", handles=0x"
4627 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
4629 r.configChangeFlags |= changes;
4667 // configuration, since we always send configuration changes to all
4684 int changes, boolean andResume) {
4706 changes, !andResume, new Configuration(mService.mConfiguration));
4683 relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) argument
H A DActivityManagerService.java784 int changes; field in class:ActivityManagerService.ProcessChangeItem
2396 if (DEBUG_PROCESS_OBSERVERS) Slog.i(TAG, "*** Delivering " + N + " process changes");
2406 if ((item.changes&ProcessChangeItem.CHANGE_ACTIVITIES) != 0) {
2413 if ((item.changes&ProcessChangeItem.CHANGE_IMPORTANCE) != 0) {
12304 int changes = 0;
12310 changes = newConfig.updateFrom(values);
12311 if (changes != 0) {
12316 EventLog.writeEvent(EventLogTags.CONFIGURATION_CHANGED, changes);
12330 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes)
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp654 uint32_t changes = 0; local
660 changes |= InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT;
664 if (changes) {
665 mInputManager->getReader()->requestRefreshConfiguration(changes);
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp857 const InputReaderConfiguration* config, uint32_t changes) {
1779 // Special case: if orientation changes while key is down, we still emit the same keycode
856 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
/frameworks/base/core/java/android/provider/
H A DSettings.java1040 * useful for monitoring changes with a ContentObserver.
1368 public static boolean hasInterestingConfigurationChanges(int changes) { argument
1369 return (changes&ActivityInfo.CONFIG_FONT_SCALE) != 0;
1724 * Determines which streams are affected by ringer mode changes. The
2799 * useful for monitoring changes with a ContentObserver.
5426 * useful for monitoring changes with a ContentObserver.
5681 * 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);
493 void InputReader::refreshConfigurationLocked(uint32_t changes) { argument
497 if (changes) {
498 ALOGI("Reconfiguring input devices. changes=0x%08x", changes);
501 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) {
506 device->configure(now, &mConfig, changes);
662 void InputReader::requestRefreshConfiguration(uint32_t changes) { argument
901 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
1741 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
1998 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2286 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2704 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
6085 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
[all...]

Completed in 741 milliseconds