Searched refs:InputManager (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/services/input/
H A DInputManager.cpp17 #define LOG_TAG "InputManager"
21 #include "InputManager.h"
27 InputManager::InputManager( function in class:android::InputManager
36 InputManager::InputManager( function in class:android::InputManager
44 InputManager::~InputManager() {
48 void InputManager::initialize() {
53 status_t InputManager
[all...]
H A DInputManager.h53 * The InputManager class never makes any calls into Java itself. Instead, the
76 class InputManager : public InputManagerInterface { class in namespace:android
78 virtual ~InputManager();
81 InputManager(
87 InputManager(
H A DAndroid.mk24 InputManager.cpp \
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java23 import android.hardware.input.InputManager;
98 final int mode = (sync) ? InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH
99 : InputManager.INJECT_INPUT_EVENT_MODE_ASYNC;
102 return InputManager.getInstance().injectInputEvent(event, mode);
H A DInstrumentation.java26 import android.hardware.input.InputManager;
894 InputManager.getInstance().injectInputEvent(newEvent,
895 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
937 InputManager.getInstance().injectInputEvent(event,
938 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
957 InputManager.getInstance().injectInputEvent(event,
958 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
H A DContextImpl.java56 import android.hardware.input.InputManager;
393 return InputManager.getInstance();
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java50 public final class InputManager { class
51 private static final String TAG = "InputManager";
58 private static InputManager sInstance;
173 private InputManager(IInputManager im) { method in class:InputManager
184 public static InputManager getInstance() {
185 synchronized (InputManager.class) {
188 sInstance = new InputManager(IInputManager.Stub.asInterface(b));
749 * Use {@link InputManager#getInputDevice} to get more information about the device.
764 * were last queried. Use {@link InputManager#getInputDevice} to get
775 InputManager
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java19 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);
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java24 import android.hardware.input.InputManager;
333 final InputManager im = InputManager.getInstance();
697 return InputManager.getInstance().deviceHasKeys(new int[] { keyCode })[0];
711 return InputManager.getInstance().deviceHasKeys(keyCodes);
H A DInputDevice.java20 import android.hardware.input.InputManager;
397 return InputManager.getInstance().getInputDevice(id);
405 return InputManager.getInstance().getInputDeviceIds();
430 * can be observed by registering an {@link InputManager.InputDeviceListener}.
588 return InputManager.getInstance().deviceHasKeys(mId, keys);
673 mVibrator = InputManager.getInstance().getInputDeviceVibrator(mId);
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java49 import android.hardware.input.InputManager;
94 * Wraps the C++ InputManager and provides its callbacks.
98 static final String TAG = "InputManager";
511 if (mode != InputManager.INJECT_INPUT_EVENT_MODE_ASYNC
512 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH
513 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_RESULT) {
804 Intent intent = new Intent(InputManager.ACTION_QUERY_KEYBOARD_LAYOUTS);
833 int configResId = metaData.getInt(InputManager.META_DATA_KEYBOARD_LAYOUTS);
835 Log.w(TAG, "Missing meta-data '" + InputManager.META_DATA_KEYBOARD_LAYOUTS
1088 if (speed < InputManager
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java27 import android.hardware.input.InputManager;
311 InputManager.getInstance().injectInputEvent(ev,
312 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
/frameworks/base/services/java/com/android/server/
H A DConsumerIrService.java25 import android.hardware.input.InputManager;
H A DVibratorService.java26 import android.hardware.input.InputManager;
53 implements InputManager.InputDeviceListener {
65 private InputManager mIm;
158 mIm = (InputManager)mContext.getSystemService(Context.INPUT_SERVICE);
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java24 import android.hardware.input.InputManager;
25 import android.hardware.input.InputManager.InputDeviceListener;
108 private final InputManager mIm;
138 mIm = (InputManager)c.getSystemService(Context.INPUT_SERVICE);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp17 #define LOG_TAG "InputManager-JNI"
38 #include <input/InputManager.h>
164 inline sp<InputManager> getInputManager() const { return mInputManager; }
217 sp<InputManager> mInputManager;
282 mInputManager = new InputManager(eventHub, this, this);
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java45 import android.hardware.input.InputManager;
2419 InputManager.getInstance().injectInputEvent(down,
2420 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
2428 InputManager.getInstance().injectInputEvent(up,
2429 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);

Completed in 346 milliseconds