Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DKeyboardLayoutManager.java606 layout = mDataStore.getCurrentKeyboardLayout(key); in getCurrentKeyboardLayoutForInputDevice()
609 layout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in getCurrentKeyboardLayoutForInputDevice()
676 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in addKeyboardLayoutForInputDevice()
678 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in addKeyboardLayoutForInputDevice()
682 mDataStore.getCurrentKeyboardLayout(key))) { in addKeyboardLayoutForInputDevice()
704 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in removeKeyboardLayoutForInputDevice()
706 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in removeKeyboardLayoutForInputDevice()
715 mDataStore.getCurrentKeyboardLayout(key))) { in removeKeyboardLayoutForInputDevice()
744 keyboardLayoutDescriptor = mDataStore.getCurrentKeyboardLayout( in handleSwitchKeyboardLayout()
H A DPersistentDataStore.java133 public String getCurrentKeyboardLayout(String inputDeviceDescriptor) { in getCurrentKeyboardLayout() method in PersistentDataStore
135 return state != null ? state.getCurrentKeyboardLayout() : null; in getCurrentKeyboardLayout()
469 public String getCurrentKeyboardLayout() { in getCurrentKeyboardLayout() method in PersistentDataStore.InputDeviceState