Searched refs:shortcutCode (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/ |
D | ShortcutKeyDispatcher.java | 61 public void registerShortcutKey(long shortcutCode) { in registerShortcutKey() argument 63 mWindowManagerService.registerShortcutKey(shortcutCode, mShortcutKeyServiceProxy); in registerShortcutKey() 70 public void onShortcutKeyPressed(long shortcutCode) { in onShortcutKeyPressed() argument 72 if ((shortcutCode == SC_DOCK_LEFT || shortcutCode == SC_DOCK_RIGHT) in onShortcutKeyPressed() 74 handleDockKey(shortcutCode); in onShortcutKeyPressed() 84 private void handleDockKey(long shortcutCode) { in handleDockKey() argument
|
D | ShortcutKeyServiceProxy.java | 37 void onShortcutKeyPressed(long shortcutCode); in onShortcutKeyPressed() argument 43 public void notifyShortcutKeyPressed(long shortcutCode) throws RemoteException { in notifyShortcutKeyPressed() argument 45 mHandler.obtainMessage(MSG_SHORTCUT_RECEIVED, shortcutCode).sendToTarget(); in notifyShortcutKeyPressed()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | ModifierShortcutManager.java | 299 void registerShortcutKey(long shortcutCode, IShortcutService shortcutService) in registerShortcutKey() argument 301 IShortcutService service = mShortcutKeyServices.get(shortcutCode); in registerShortcutKey() 306 mShortcutKeyServices.put(shortcutCode, shortcutService); in registerShortcutKey() 316 long shortcutCode = keyCode; in handleShortcutService() local 318 shortcutCode |= ((long) KeyEvent.META_CTRL_ON) << Integer.SIZE; in handleShortcutService() 322 shortcutCode |= ((long) KeyEvent.META_ALT_ON) << Integer.SIZE; in handleShortcutService() 326 shortcutCode |= ((long) KeyEvent.META_SHIFT_ON) << Integer.SIZE; in handleShortcutService() 330 shortcutCode |= ((long) KeyEvent.META_META_ON) << Integer.SIZE; in handleShortcutService() 333 IShortcutService shortcutService = mShortcutKeyServices.get(shortcutCode); in handleShortcutService() 336 shortcutService.notifyShortcutKeyPressed(shortcutCode); in handleShortcutService() [all …]
|
D | WindowManagerPolicy.java | 164 void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument
|
D | PhoneWindowManager.java | 4193 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutService) 4196 mModifierShortcutManager.registerShortcutKey(shortcutCode, shortcutService);
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | IShortcutService.aidl | 27 void notifyShortcutKeyPressed(long shortcutCode); in notifyShortcutKeyPressed() argument
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TestWindowManagerPolicy.java | 49 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) { in registerShortcutKey() argument
|
/frameworks/base/core/java/android/view/ |
D | IWindowManager.aidl | 529 void registerShortcutKey(in long shortcutCode, IShortcutService keySubscriber); in registerShortcutKey() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowManagerService.java | 7843 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument 7849 mPolicy.registerShortcutKey(shortcutCode, shortcutKeyReceiver); in registerShortcutKey()
|