/aosp12/frameworks/native/libs/input/ |
H A D | InputDevice.cpp | 155 InputDeviceInfo::InputDeviceInfo() { in InputDeviceInfo() function in android::InputDeviceInfo 159 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) in InputDeviceInfo() function in android::InputDeviceInfo 178 InputDeviceInfo::~InputDeviceInfo() { in ~InputDeviceInfo() 202 const InputDeviceInfo::MotionRange* InputDeviceInfo::getMotionRange( in getMotionRange() 214 void InputDeviceInfo::addSource(uint32_t source) { in addSource() 224 void InputDeviceInfo::addMotionRange(const MotionRange& range) { in addMotionRange() 228 void InputDeviceInfo::addSensorInfo(const InputDeviceSensorInfo& info) { in addSensorInfo() 236 void InputDeviceInfo::addBatteryInfo(const InputDeviceBatteryInfo& info) { in addBatteryInfo() 243 void InputDeviceInfo::addLightInfo(const InputDeviceLightInfo& info) { in addLightInfo() 250 std::vector<InputDeviceSensorInfo> InputDeviceInfo::getSensors() { in getSensors() [all …]
|
/aosp12/frameworks/native/services/inputflinger/reader/mapper/ |
H A D | TouchInputMapper.h | 476 InputDeviceInfo::MotionRange x; 477 InputDeviceInfo::MotionRange y; 478 InputDeviceInfo::MotionRange pressure; 481 InputDeviceInfo::MotionRange size; 484 InputDeviceInfo::MotionRange touchMajor; 485 InputDeviceInfo::MotionRange touchMinor; 488 InputDeviceInfo::MotionRange toolMajor; 489 InputDeviceInfo::MotionRange toolMinor; 492 InputDeviceInfo::MotionRange orientation; 495 InputDeviceInfo::MotionRange distance; [all …]
|
H A D | JoystickInputMapper.h | 30 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override; 109 static void addMotionRange(int32_t axisId, const Axis& axis, InputDeviceInfo* info);
|
H A D | ExternalStylusInputMapper.h | 34 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
H A D | RotaryEncoderInputMapper.h | 31 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
H A D | VibratorInputMapper.h | 30 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
H A D | ExternalStylusInputMapper.cpp | 33 void ExternalStylusInputMapper::populateDeviceInfo(InputDeviceInfo* info) { in populateDeviceInfo()
|
H A D | CursorInputMapper.h | 60 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
H A D | InputMapper.cpp | 29 void InputMapper::populateDeviceInfo(InputDeviceInfo* info) { in populateDeviceInfo()
|
H A D | KeyboardInputMapper.h | 30 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
H A D | RotaryEncoderInputMapper.cpp | 38 void RotaryEncoderInputMapper::populateDeviceInfo(InputDeviceInfo* info) { in populateDeviceInfo()
|
H A D | VibratorInputMapper.cpp | 32 void VibratorInputMapper::populateDeviceInfo(InputDeviceInfo* info) { in populateDeviceInfo()
|
H A D | JoystickInputMapper.cpp | 32 void JoystickInputMapper::populateDeviceInfo(InputDeviceInfo* info) { in populateDeviceInfo() 45 void JoystickInputMapper::addMotionRange(int32_t axisId, const Axis& axis, InputDeviceInfo* info) { in addMotionRange()
|
H A D | InputMapper.h | 54 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo);
|
H A D | SensorInputMapper.h | 32 void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_view_InputDevice.cpp | 39 jobject android_view_InputDevice_create(JNIEnv* env, const InputDeviceInfo& deviceInfo) { in android_view_InputDevice_create() 76 const std::vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); in android_view_InputDevice_create() 77 for (const InputDeviceInfo::MotionRange& range: ranges) { in android_view_InputDevice_create()
|
H A D | android_view_InputDevice.h | 27 extern jobject android_view_InputDevice_create(JNIEnv* env, const InputDeviceInfo& deviceInfo);
|
/aosp12/frameworks/native/include/input/ |
H A D | InputDevice.h | 191 class InputDeviceInfo { 193 InputDeviceInfo(); 194 InputDeviceInfo(const InputDeviceInfo& other); 195 ~InputDeviceInfo();
|
/aosp12/frameworks/native/services/inputflinger/reader/include/ |
H A D | InputReader.h | 65 std::vector<InputDeviceInfo> getInputDevices() const override; 141 void getExternalStylusDevices(std::vector<InputDeviceInfo>& outDevices) 205 void getExternalStylusDevicesLocked(std::vector<InputDeviceInfo>& outDevices) REQUIRES(mLock); 221 std::vector<InputDeviceInfo> getInputDevicesLocked() const REQUIRES(mLock);
|
H A D | InputReaderContext.h | 54 virtual void getExternalStylusDevices(std::vector<InputDeviceInfo>& outDevices) = 0;
|
/aosp12/frameworks/native/services/inputflinger/reader/ |
H A D | InputDevice.cpp | 92 InputDeviceInfo deviceInfo = getDeviceInfo(); in dump() 116 const std::vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); in dump() 120 const InputDeviceInfo::MotionRange& range = ranges[i]; in dump() 419 InputDeviceInfo InputDevice::getDeviceInfo() { in getDeviceInfo() 420 InputDeviceInfo outDeviceInfo; in getDeviceInfo()
|
H A D | InputReader.cpp | 90 std::vector<InputDeviceInfo> inputDevices; in loopOnce() 411 void InputReader::getExternalStylusDevicesLocked(std::vector<InputDeviceInfo>& outDevices) { in getExternalStylusDevicesLocked() 494 std::vector<InputDeviceInfo> InputReader::getInputDevices() const { in getInputDevices() 499 std::vector<InputDeviceInfo> InputReader::getInputDevicesLocked() const { in getInputDevicesLocked() 500 std::vector<InputDeviceInfo> outInputDevices; in getInputDevicesLocked() 941 void InputReader::ContextImpl::getExternalStylusDevices(std::vector<InputDeviceInfo>& outDevices) { in getExternalStylusDevices()
|
/aosp12/frameworks/native/services/inputflinger/reader/controller/ |
H A D | PeripheralControllerInterface.h | 46 virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo) = 0;
|
H A D | PeripheralController.h | 34 void populateDeviceInfo(InputDeviceInfo* deviceInfo) override;
|
/aosp12/frameworks/native/services/inputflinger/include/ |
H A D | InputReaderBase.h | 81 virtual std::vector<InputDeviceInfo> getInputDevices() const = 0; 378 virtual void notifyInputDevicesChanged(const std::vector<InputDeviceInfo>& inputDevices) = 0;
|