Home
last modified time | relevance | path

Searched refs:oldLayout (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java1656 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in addKeyboardLayoutForInputDevice() local
1657 if (oldLayout == null && !key.equals(identifier.getDescriptor())) { in addKeyboardLayoutForInputDevice()
1658 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in addKeyboardLayoutForInputDevice()
1661 && !Objects.equals(oldLayout, in addKeyboardLayoutForInputDevice()
1685 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in removeKeyboardLayoutForInputDevice() local
1686 if (oldLayout == null && !key.equals(identifier.getDescriptor())) { in removeKeyboardLayoutForInputDevice()
1687 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in removeKeyboardLayoutForInputDevice()
1695 if (removed && !Objects.equals(oldLayout, in removeKeyboardLayoutForInputDevice()
/aosp12/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplayMapper.java668 final Layout oldLayout = mCurrentLayout; in applyLayoutLocked() local
670 Slog.i(TAG, "Applying layout: " + mCurrentLayout + ", Previous layout: " + oldLayout); in applyLayoutLocked()