Home
last modified time | relevance | path

Searched refs:shortcutCode (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
DShortcutKeyDispatcher.java61 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
DShortcutKeyServiceProxy.java37 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/
DModifierShortcutManager.java299 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 …]
DWindowManagerPolicy.java164 void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument
DPhoneWindowManager.java4193 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutService)
4196 mModifierShortcutManager.registerShortcutKey(shortcutCode, shortcutService);
/frameworks/base/core/java/com/android/internal/policy/
DIShortcutService.aidl27 void notifyShortcutKeyPressed(long shortcutCode); in notifyShortcutKeyPressed() argument
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTestWindowManagerPolicy.java49 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) { in registerShortcutKey() argument
/frameworks/base/core/java/android/view/
DIWindowManager.aidl529 void registerShortcutKey(in long shortcutCode, IShortcutService keySubscriber); in registerShortcutKey() argument
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java7843 public void registerShortcutKey(long shortcutCode, IShortcutService shortcutKeyReceiver) in registerShortcutKey() argument
7849 mPolicy.registerShortcutKey(shortcutCode, shortcutKeyReceiver); in registerShortcutKey()