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

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimator.java830 void setPendingLayoutChanges(final int displayId, final int changes) { argument
832 mService.getDisplayContentLocked(displayId).pendingLayoutChanges |= changes;
836 void setAppLayoutChanges(final AppWindowAnimator appAnimator, final int changes, String s) { argument
837 // Used to track which displays layout changes have been done.
843 setPendingLayoutChanges(displayId, changes);
848 displays.put(displayId, changes);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java3655 final int changes = oldConfig.diff(newConfig);
3656 if (changes == 0 && !r.forceNewConfig) {
3672 // Figure out how to handle the changes between the configurations.
3675 + Integer.toHexString(changes) + ", handles=0x"
3679 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
3681 r.configChangeFlags |= changes;
3719 // configuration, since we always send configuration changes to all
3736 int changes, boolean andResume) {
3760 changes, !andResume, new Configuration(mService.mConfiguration));
3735 relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) argument
H A DActivityManagerService.java1066 * The last total number of process we have, to determine if changes actually look
1139 int changes; field in class:ActivityManagerService.ProcessChangeItem
2401 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3301 if (DEBUG_PROCESS_OBSERVERS) Slog.i(TAG, "*** Delivering " + N + " process changes");
3312 if ((item.changes&ProcessChangeItem.CHANGE_ACTIVITIES) != 0) {
3319 if ((item.changes&ProcessChangeItem.CHANGE_PROCESS_STATE) != 0) {
8083 // Update the task description to reflect any changes in the task stack
16669 int changes = 0;
16673 changes = newConfig.updateFrom(values);
16674 if (changes !
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp672 uint32_t changes = 0; local
678 changes |= InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT;
682 if (changes) {
683 mInputManager->getReader()->requestRefreshConfiguration(changes);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp871 const InputReaderConfiguration* config, uint32_t changes) {
1799 // Special case: if orientation changes while key is down, we still emit the same keycode
870 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
/frameworks/native/services/inputflinger/
H A DInputReader.cpp268 uint32_t changes = mConfigurationChangesToRefresh; local
269 if (changes) {
272 refreshConfigurationLocked(changes);
505 void InputReader::refreshConfigurationLocked(uint32_t changes) { argument
509 if (changes) {
510 ALOGI("Reconfiguring input devices. changes=0x%08x", changes);
513 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) {
518 device->configure(now, &mConfig, changes);
674 void InputReader::requestRefreshConfiguration(uint32_t changes) { argument
914 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
1755 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2018 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2314 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2748 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
6292 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DSettings.java146 * If there is no extra in this Intent, no changes will be made.
1367 * useful for monitoring changes with a ContentObserver.
1695 public static boolean hasInterestingConfigurationChanges(int changes) { argument
1696 return (changes&ActivityInfo.CONFIG_FONT_SCALE) != 0;
2057 * Determines which streams are affected by ringer mode changes. The
3178 * useful for monitoring changes with a ContentObserver.
3633 * to receive changes in this value.
6575 * Opaque value, changes when persisted zen mode configuration changes.
6749 * useful for monitoring changes wit
[all...]

Completed in 3890 milliseconds