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

/frameworks/native/services/inputflinger/
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.mk23 InputManager.cpp \
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java23 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);
H A DInstrumentation.java26 import android.hardware.input.InputManager;
899 InputManager.getInstance().injectInputEvent(newEvent,
900 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
942 InputManager.getInstance().injectInputEvent(event,
943 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
962 InputManager.getInstance().injectInputEvent(event,
963 InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
H A DContextImpl.java70 import android.hardware.input.InputManager;
449 return InputManager.getInstance();
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java53 public final class InputManager { class
54 private static final String TAG = "InputManager";
61 private static InputManager sInstance;
176 private InputManager(IInputManager im) { method in class:InputManager
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
[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.java21 import android.hardware.input.InputManager;
409 return InputManager.getInstance().getInputDevice(id);
417 return InputManager.getInstance().getInputDeviceIds();
442 * can be observed by registering an {@link InputManager.InputDeviceListener}.
624 return InputManager.getInstance().deviceHasKeys(mId, keys);
709 mVibrator = InputManager.getInstance().getInputDeviceVibrator(mId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java24 import android.hardware.input.InputManager;
248 InputManager.getInstance().injectInputEvent(ev,
249 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java53 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) {
890 Intent intent = new Intent(InputManager.ACTION_QUERY_KEYBOARD_LAYOUTS);
921 int configResId = metaData.getInt(InputManager.META_DATA_KEYBOARD_LAYOUTS);
923 Log.w(TAG, "Missing meta-data '" + InputManager.META_DATA_KEYBOARD_LAYOUTS
1218 if (speed < InputManager
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DVibratorService.java26 import android.hardware.input.InputManager;
56 implements InputManager.InputDeviceListener {
70 private InputManager mIm;
172 mIm = (InputManager)mContext.getSystemService(Context.INPUT_SERVICE);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevice.java20 import android.hardware.input.InputManager;
487 InputManager.getInstance().injectInputEvent(keyEvent,
488 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java24 import android.hardware.input.InputManager;
25 import android.hardware.input.InputManager.InputDeviceListener;
110 private final InputManager mIm;
140 mIm = (InputManager)c.getSystemService(Context.INPUT_SERVICE);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp17 #define LOG_TAG "InputManager-JNI"
41 #include <inputflinger/InputManager.h>
176 inline sp<InputManager> getInputManager() const { return mInputManager; }
234 sp<InputManager> mInputManager;
297 mInputManager = new InputManager(eventHub, this, this);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java47 import android.hardware.input.InputManager;
2774 InputManager.getInstance().injectInputEvent(down,
2775 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
2783 InputManager.getInstance().injectInputEvent(up,
2784 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java70 import android.hardware.input.InputManager;
3745 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);

Completed in 404 milliseconds