Searched refs:shortcutCode (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/policy/
H A DIShortcutService.aidl25 * @param shortcutCode the keycode packed with meta information
27 void notifyShortcutKeyPressed(long shortcutCode);
/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
H A DShortcutKeyServiceProxy.java36 void onShortcutKeyPressed(long shortcutCode); argument
42 public void notifyShortcutKeyPressed(long shortcutCode) throws RemoteException { argument
44 mHandler.obtainMessage(MSG_SHORTCUT_RECEIVED, shortcutCode).sendToTarget();
H A DShortcutKeyDispatcher.java71 * @param shortcutCode packed representation of shortcut key code and meta information
73 public void registerShortcutKey(long shortcutCode) { argument
75 mWindowManagerService.registerShortcutKey(shortcutCode, mShortcutKeyServiceProxy);
82 public void onShortcutKeyPressed(long shortcutCode) { argument
84 if ((shortcutCode == SC_DOCK_LEFT || shortcutCode == SC_DOCK_RIGHT)
86 handleDockKey(shortcutCode);
96 private void handleDockKey(long shortcutCode) { argument
102 int dockMode = (shortcutCode == SC_DOCK_LEFT)
114 int increment = (shortcutCode
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl429 void registerShortcutKey(in long shortcutCode, IShortcutService keySubscriber);
H A DWindowManagerPolicy.java135 void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java602 public void registerShortcutKey(long shortcutCode, IShortcutService service) argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java3451 long shortcutCode = keyCode;
3453 shortcutCode |= ((long) KeyEvent.META_CTRL_ON) << Integer.SIZE;
3457 shortcutCode |= ((long) KeyEvent.META_ALT_ON) << Integer.SIZE;
3461 shortcutCode |= ((long) KeyEvent.META_SHIFT_ON) << Integer.SIZE;
3465 shortcutCode |= ((long) KeyEvent.META_META_ON) << Integer.SIZE;
3468 IShortcutService shortcutService = mShortcutKeyServices.get(shortcutCode);
3472 shortcutService.notifyShortcutKeyPressed(shortcutCode);
3475 mShortcutKeyServices.delete(shortcutCode);
3571 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutService) argument
3574 IShortcutService service = mShortcutKeyServices.get(shortcutCode);
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java11513 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) argument
11520 mPolicy.registerShortcutKey(shortcutCode, shortcutKeyReceiver);

Completed in 6160 milliseconds