HomeSort by relevance Sort by last modified time
    Searched full:inputmanager (Results 1 - 25 of 63) sorted by null

1 2 3

  /frameworks/native/services/inputflinger/
InputManager.cpp 17 #define LOG_TAG "InputManager"
21 #include "InputManager.h"
27 InputManager::InputManager(
36 InputManager::InputManager(
44 InputManager::~InputManager() {
48 void InputManager::initialize() {
53 status_t InputManager::start()
    [all...]
InputManager.h 53 * The InputManager class never makes any calls into Java itself. Instead, the
76 class InputManager : public InputManagerInterface {
78 virtual ~InputManager();
81 InputManager(
87 InputManager(
Android.mk 23 InputManager.cpp \
  /external/chromium_org/athena/input/public/
input_manager.h 21 class ATHENA_EXPORT InputManager {
23 // Creates and deletes the singleton object of the InputManager
25 static InputManager* Create();
26 static InputManager* Get();
36 virtual ~InputManager() {}
  /external/chromium_org/athena/input/
input_manager_impl.cc 17 InputManager* instance = NULL;
19 class InputManagerImpl : public InputManager,
30 // InputManager:
105 InputManager* InputManager::Create() {
112 InputManager* InputManager::Get() {
118 void InputManager::Shutdown() {
  /packages/apps/Settings/src/com/android/settings/
PointerSpeedPreference.java 22 import android.hardware.input.InputManager;
35 private final InputManager mIm;
52 mIm = (InputManager)getContext().getSystemService(Context.INPUT_SERVICE);
71 mSeekBar.setMax(InputManager.MAX_POINTER_SPEED - InputManager.MIN_POINTER_SPEED);
73 mSeekBar.setProgress(mOldSpeed - InputManager.MIN_POINTER_SPEED);
79 mIm.tryPointerSpeed(progress + InputManager.MIN_POINTER_SPEED);
89 mIm.tryPointerSpeed(seekBar.getProgress() + InputManager.MIN_POINTER_SPEED);
94 mSeekBar.setProgress(speed - InputManager.MIN_POINTER_SPEED);
105 mSeekBar.getProgress() + InputManager.MIN_POINTER_SPEED)
    [all...]
  /development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerV16.java 21 import android.hardware.input.InputManager;
33 private final InputManager mInputManager;
37 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
51 static class V16InputDeviceListener implements InputManager.InputDeviceListener {
InputManagerCompat.java 121 * Use this to construct a compatible InputManager.
130 * @return a compatible implementation of InputManager
  /packages/apps/Settings/src/com/android/settings/search/
DynamicIndexableContentMonitor.java 27 import android.hardware.input.InputManager;
49 InputManager.InputDeviceListener {
160 InputManager inputManager = (InputManager) context.getSystemService(
162 inputManager.registerInputDeviceListener(this, mHandler);
171 InputManager inputManager = (InputManager) mContext.getSystemService(
173 inputManager.unregisterInputDeviceListener(this)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
InputPairer.java 27 import android.hardware.input.InputManager;
154 InputManager inMan = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
193 InputManager inMan = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
265 private InputManager.InputDeviceListener mInputListener =
266 new InputManager.InputDeviceListener() {
595 InputManager inputManager = (InputManager) mContext.getSystemService(Context.INPUT_SERVICE)
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutPickerFragment.java 24 import android.hardware.input.InputManager;
25 import android.hardware.input.InputManager.InputDeviceListener;
41 private InputManager mIm;
62 mIm = (InputManager)getSystemService(Context.INPUT_SERVICE);
KeyboardLayoutDialogFragment.java 32 import android.hardware.input.InputManager;
34 import android.hardware.input.InputManager.InputDeviceListener;
54 private InputManager mIm;
69 mIm = (InputManager)context.getSystemService(Context.INPUT_SERVICE);
302 InputManager im = (InputManager)getContext().getSystemService(Context.INPUT_SERVICE);
  /frameworks/base/docs/html/training/game-controllers/
compatibility.jd 84 <td>{@link android.hardware.input.InputManager#getInputDeviceIds()}</td>
91 <td>{@link android.hardware.input.InputManager#getInputDevice(int)
120 <td>{@link android.hardware.input.InputManager.InputDeviceListener#onInputDeviceAdded(int) onInputDeviceAdded()}</td>
127 <td>{@link android.hardware.input.InputManager.InputDeviceListener#onInputDeviceChanged(int) onInputDeviceChanged()}</td>
134 <td>{@link android.hardware.input.InputManager.InputDeviceListener#onInputDeviceRemoved(int) onInputDeviceRemoved()}</td>
250 <dd>Mirrors {@link android.hardware.input.InputManager#getInputDevice(int)
254 <dd>Mirrors {@link android.hardware.input.InputManager#getInputDeviceIds()
260 <dd>Mirrors {@link android.hardware.input.InputManager#registerInputDeviceListener(android.hardware.input.InputManager.InputDeviceListener, android.os.Handler)
264 <dd>Mirrors {@link android.hardware.input.InputManager#unregisterInputDeviceListener(android.hardware.input.InputManager.InputDeviceListener) unregisterI (…)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 20 import android.hardware.input.InputManager;
133 if (!InputManager.getInstance().injectInputEvent(keyEvent,
134 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_RESULT)) {
MonkeyMotionEvent.java 20 import android.hardware.input.InputManager;
188 if (!InputManager.getInstance().injectInputEvent(me,
189 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_RESULT)) {
  /frameworks/base/services/core/java/com/android/server/
DisplayThread.java 25 * DisplayManager, and InputManager to perform quick operations in real time.
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
FullscreenActivity.java 22 import android.hardware.input.InputManager;
23 import android.hardware.input.InputManager.InputDeviceListener;
129 private InputManager mInputManager;
205 mInputManager = (InputManager) getSystemService(Context.INPUT_SERVICE);
419 * android.hardware.input.InputManager.InputDeviceListener#onInputDeviceAdded
441 * android.hardware.input.InputManager.InputDeviceListener#onInputDeviceRemoved
467 * android.hardware.input.InputManager.InputDeviceListener#onInputDeviceChanged
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 23 import android.hardware.input.InputManager;
111 final int mode = (sync) ? InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH
112 : InputManager.INJECT_INPUT_EVENT_MODE_ASYNC;
115 return InputManager.getInstance().injectInputEvent(event, mode);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 24 import android.hardware.input.InputManager;
248 InputManager.getInstance().injectInputEvent(ev,
249 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 19 import android.hardware.input.InputManager;
233 InputManager.getInstance().injectInputEvent(event,
234 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
259 InputManager.getInstance().injectInputEvent(event,
260 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 24 import android.hardware.input.InputManager;
57 implements InputManager.InputDeviceListener {
60 private InputManager mInputManager;
70 mInputManager = (InputManager)getSystemService(Context.INPUT_SERVICE);
170 // Implementation of InputManager.InputDeviceListener.onInputDeviceAdded()
177 // Implementation of InputManager.InputDeviceListener.onInputDeviceChanged()
188 // Implementation of InputManager.InputDeviceListener.onInputDeviceRemoved()
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 53 public final class InputManager {
54 private static final String TAG = "InputManager";
61 private static InputManager sInstance;
176 private InputManager(IInputManager im) {
187 public static InputManager getInstance() {
188 synchronized (InputManager.class) {
191 sInstance = new InputManager(IInputManager.Stub.asInterface(b));
789 * Use {@link InputManager#getInputDevice} to get more information about the device.
804 * were last queried. Use {@link InputManager#getInputDevice} to get
815 InputManager.this.onInputDevicesChanged(deviceIdAndGeneration)
    [all...]
KeyboardLayout.java 61 * {@link InputManager#getKeyboardLayout(String)}.
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
GamepadList.java 10 import android.hardware.input.InputManager;
11 import android.hardware.input.InputManager.InputDeviceListener;
35 private InputManager mInputManager;
89 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java 53 import android.hardware.input.InputManager;
101 * Wraps the C++ InputManager and provides its callbacks.
105 static final String TAG = "InputManager";
537 if (mode != InputManager.INJECT_INPUT_EVENT_MODE_ASYNC
538 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH
539 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_RESULT) {
    [all...]

Completed in 1500 milliseconds

1 2 3