HomeSort by relevance Sort by last modified time
    Searched refs:mInputManager (Results 1 - 17 of 17) sorted by null

  /development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerV16.java 33 private final InputManager mInputManager;
37 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
43 return mInputManager.getInputDevice(id);
48 return mInputManager.getInputDeviceIds();
78 mInputManager.registerInputDeviceListener(v16Listener, handler);
87 mInputManager.unregisterInputDeviceListener(curListener);
InputManagerV9.java 47 private final WeakReference<InputManagerV9> mInputManager;
50 mInputManager = new WeakReference<InputManagerV9>(im);
58 InputManagerV9 imv = mInputManager.get();
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
GamepadList.java 35 private InputManager mInputManager;
64 int[] deviceIds = mInputManager.getInputDeviceIds();
89 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
94 mInputManager.registerInputDeviceListener(mInputDeviceListener, null);
116 mInputManager.unregisterInputDeviceListener(mInputDeviceListener);
117 mInputManager = null;
  /packages/apps/Browser/src/com/android/browser/
UrlInputView.java 70 private InputMethodManager mInputManager;
94 mInputManager = (InputMethodManager) ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
218 mInputManager.hideSoftInputFromWindow(getWindowToken(), 0);
222 mInputManager.focusIn(this);
223 mInputManager.showSoftInput(this, 0);
229 mInputManager.hideSoftInputFromWindow(getWindowToken(), 0);
BaseUi.java 84 private InputMethodManager mInputManager;
122 mInputManager = (InputMethodManager)
563 if (mInputManager.isActive()) {
564 mInputManager.hideSoftInputFromWindow(mContentView.getWindowToken(),
  /frameworks/base/services/core/java/com/android/server/wm/
FakeWindowImpl.java 48 mService.mInputManager.registerInputChannel(mServerChannel, null);
98 mService.mInputManager.unregisterInputChannel(mServerChannel);
InputMonitor.java 315 mService.mInputManager.setInputWindows(mInputWindowHandles);
431 mService.mInputManager.setFocusedApplication(null);
437 mService.mInputManager.setFocusedApplication(handle);
497 mService.mInputManager.setInputDispatchMode(mInputDispatchEnabled, mInputDispatchFrozen);
DragState.java 102 mService.mInputManager.registerInputChannel(mServerChannel, null);
155 mService.mInputManager.unregisterInputChannel(mServerChannel);
Session.java 309 if (!mService.mInputManager.transferTouchFocus(callingWin.mInputChannel,
WindowManagerService.java 612 final InputManagerService mInputManager;
811 mInputManager = inputManager; // Must be before createDisplayContentLocked.
818 mPointerEventDispatcher = new PointerEventDispatcher(mInputManager.monitorInput(TAG));
    [all...]
WindowState.java     [all...]
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
FullscreenActivity.java 129 private InputManager mInputManager;
205 mInputManager = (InputManager) getSystemService(Context.INPUT_SERVICE);
214 int[] deviceIds = mInputManager.getInputDeviceIds();
250 mInputManager.registerInputDeviceListener(this, null);
256 mInputManager.unregisterInputDeviceListener(this);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 60 private InputManager mInputManager;
70 mInputManager = (InputManager)getSystemService(Context.INPUT_SERVICE);
95 mInputManager.registerInputDeviceListener(this, null);
99 int[] ids = mInputManager.getInputDeviceIds();
110 mInputManager.unregisterInputDeviceListener(this);
159 final InputDevice device = mInputManager.getInputDevice(deviceId);
  /frameworks/base/services/core/java/com/android/server/
WiredAccessoryManager.java 88 private final InputManagerService mInputManager;
97 mInputManager = inputManager;
108 if (mInputManager.getSwitchState(-1, InputDevice.SOURCE_ANY, SW_HEADPHONE_INSERT) == 1) {
111 if (mInputManager.getSwitchState(-1, InputDevice.SOURCE_ANY, SW_MICROPHONE_INSERT) == 1) {
114 if (mInputManager.getSwitchState(-1, InputDevice.SOURCE_ANY, SW_LINEOUT_INSERT) == 1) {
  /frameworks/base/services/core/jni/
com_android_server_input_InputManagerService.cpp 176 inline sp<InputManager> getInputManager() const { return mInputManager; }
234 sp<InputManager> mInputManager;
297 mInputManager = new InputManager(eventHub, this, this);
308 mInputManager->getReader()->dump(dump);
311 mInputManager->getDispatcher()->dump(dump);
348 mInputManager->getReader()->requestRefreshConfiguration(
356 return mInputManager->getDispatcher()->registerInputChannel(
362 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
658 mInputManager->getDispatcher()->setInputWindows(windowHandles);
683 mInputManager->getReader()->requestRefreshConfiguration(changes)
    [all...]
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 70 private final InputManagerCompat mInputManager;
107 mInputManager = InputManagerCompat.Factory.getInputManager(this.getContext());
108 mInputManager.registerInputDeviceListener(this, null);
114 int[] deviceIds = mInputManager.getInputDeviceIds();
116 InputDevice dev = mInputManager.getInputDevice(deviceId);
157 mInputManager.onGenericMotionEvent(event);
185 mInputManager.onResume();
196 mInputManager.onPause();
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 68 private DefaultSoftKeyboardJAJP mInputManager;
210 mInputManager = inputManager;
350 mInputManager.nextKeyMode();

Completed in 586 milliseconds