Home
last modified time | relevance | path

Searched refs:InputDeviceInfo (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/libs/input/
DInputDevice.cpp136 InputDeviceInfo::InputDeviceInfo() { in InputDeviceInfo() function in android::InputDeviceInfo
140 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : in InputDeviceInfo() function in android::InputDeviceInfo
149 InputDeviceInfo::~InputDeviceInfo() { in ~InputDeviceInfo()
152 void InputDeviceInfo::initialize(int32_t id, int32_t generation, int32_t controllerNumber, in initialize()
169 const InputDeviceInfo::MotionRange* InputDeviceInfo::getMotionRange( in getMotionRange()
181 void InputDeviceInfo::addSource(uint32_t source) { in addSource()
185 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, in addMotionRange()
191 void InputDeviceInfo::addMotionRange(const MotionRange& range) { in addMotionRange()
/frameworks/native/include/input/
DInputDevice.h59 class InputDeviceInfo {
61 InputDeviceInfo();
62 InputDeviceInfo(const InputDeviceInfo& other);
63 ~InputDeviceInfo();
/frameworks/native/services/inputflinger/
DInputReader.h269 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) = 0;
313 virtual void getInputDevices(Vector<InputDeviceInfo>& outInputDevices) = 0;
387 virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices) = 0;
419 virtual void getInputDevices(Vector<InputDeviceInfo>& outInputDevices);
460 virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices);
501 void getExternalStylusDevicesLocked(Vector<InputDeviceInfo>& outDevices);
509 void getInputDevicesLocked(Vector<InputDeviceInfo>& outInputDevices);
579 void getDeviceInfo(InputDeviceInfo* outDeviceInfo);
990 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo);
1053 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo);
[all …]
/frameworks/base/core/jni/
Dandroid_view_InputDevice.cpp39 jobject android_view_InputDevice_create(JNIEnv* env, const InputDeviceInfo& deviceInfo) { in android_view_InputDevice_create()
71 const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); in android_view_InputDevice_create()
73 const InputDeviceInfo::MotionRange& range = ranges.itemAt(i); in android_view_InputDevice_create()
Dandroid_view_InputDevice.h27 extern jobject android_view_InputDevice_create(JNIEnv* env, const InputDeviceInfo& deviceInfo);
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp134 Vector<InputDeviceInfo> mInputDevices;
187 const Vector<InputDeviceInfo>& getInputDevices() const { in getInputDevices()
234 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { in notifyInputDevicesChanged()
887 virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices) { in getExternalStylusDevices()
973 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) { in populateDeviceInfo()
1149 Vector<InputDeviceInfo> inputDevices; in TEST_F()
1427 InputDeviceInfo info; in TEST_F()
1497 InputDeviceInfo info; in TEST_F()
1621 static void assertMotionRange(const InputDeviceInfo& info, in assertMotionRange()
1623 const InputDeviceInfo::MotionRange* range = info.getMotionRange(axis, source); in assertMotionRange()
[all …]
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp231 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
572 void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { in notifyInputDevicesChanged()