Home
last modified time | relevance | path

Searched refs:hasRelativeAxis (Results 1 – 5 of 5) sorted by relevance

/hardware/libhardware/modules/input/evdev/
DMouseInputMapper.cpp57 if (!devNode->hasRelativeAxis(REL_X) || !devNode->hasRelativeAxis(REL_Y)) { in configureInputReport()
66 if (devNode->hasRelativeAxis(REL_WHEEL)) { in configureInputReport()
70 if (devNode->hasRelativeAxis(REL_HWHEEL)) { in configureInputReport()
DInputDevice.cpp124 && mDeviceNode->hasRelativeAxis(REL_X) in createMappers()
125 && mDeviceNode->hasRelativeAxis(REL_Y)) { in createMappers()
DInputHub.h83 virtual bool hasRelativeAxis(int32_t axis) const = 0;
DInputHub.cpp93 virtual bool hasRelativeAxis(int32_t axis) const override;
270 bool EvdevDeviceNode::hasRelativeAxis(int axis) const { in hasRelativeAxis() function in android::EvdevDeviceNode
/hardware/libhardware/tests/input/evdev/
DInputMocks.h57 virtual bool hasRelativeAxis(int axis) const override { return mRelAxes.count(axis); } in hasRelativeAxis() function