Searched refs:shortcutCode (Results 1 – 8 of 8) sorted by relevance
73 public void registerShortcutKey(long shortcutCode) { in registerShortcutKey() argument75 mWindowManagerService.registerShortcutKey(shortcutCode, mShortcutKeyServiceProxy); in registerShortcutKey()82 public void onShortcutKeyPressed(long shortcutCode) { in onShortcutKeyPressed() argument84 if ((shortcutCode == SC_DOCK_LEFT || shortcutCode == SC_DOCK_RIGHT) in onShortcutKeyPressed()86 handleDockKey(shortcutCode); in onShortcutKeyPressed()96 private void handleDockKey(long shortcutCode) { in handleDockKey() argument102 int dockMode = (shortcutCode == SC_DOCK_LEFT) in handleDockKey()114 int increment = (shortcutCode == SC_DOCK_LEFT) ? -1 : 1; in handleDockKey()
36 void onShortcutKeyPressed(long shortcutCode); in onShortcutKeyPressed() argument42 public void notifyShortcutKeyPressed(long shortcutCode) throws RemoteException { in notifyShortcutKeyPressed() argument44 mHandler.obtainMessage(MSG_SHORTCUT_RECEIVED, shortcutCode).sendToTarget(); in notifyShortcutKeyPressed()
27 void notifyShortcutKeyPressed(long shortcutCode); in notifyShortcutKeyPressed() argument
419 void registerShortcutKey(in long shortcutCode, IShortcutService keySubscriber); in registerShortcutKey() argument
135 void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument
591 public void registerShortcutKey(long shortcutCode, IShortcutService service) in registerShortcutKey() argument
3435 long shortcutCode = keyCode; in interceptKeyBeforeDispatching() local3437 shortcutCode |= ((long) KeyEvent.META_CTRL_ON) << Integer.SIZE; in interceptKeyBeforeDispatching()3441 shortcutCode |= ((long) KeyEvent.META_ALT_ON) << Integer.SIZE; in interceptKeyBeforeDispatching()3445 shortcutCode |= ((long) KeyEvent.META_SHIFT_ON) << Integer.SIZE; in interceptKeyBeforeDispatching()3449 shortcutCode |= ((long) KeyEvent.META_META_ON) << Integer.SIZE; in interceptKeyBeforeDispatching()3452 IShortcutService shortcutService = mShortcutKeyServices.get(shortcutCode); in interceptKeyBeforeDispatching()3456 shortcutService.notifyShortcutKeyPressed(shortcutCode); in interceptKeyBeforeDispatching()3459 mShortcutKeyServices.delete(shortcutCode); in interceptKeyBeforeDispatching()3555 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutService) in registerShortcutKey() argument3558 IShortcutService service = mShortcutKeyServices.get(shortcutCode); in registerShortcutKey()[all …]
11354 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument11361 mPolicy.registerShortcutKey(shortcutCode, shortcutKeyReceiver); in registerShortcutKey()