Home
last modified time | relevance | path

Searched refs:EV_REL (Results 1 – 14 of 14) sorted by relevance

/frameworks/native/services/inputflinger/tests/
DCursorInputMapper_test.cpp182 args += process(ARBITRARY_TIME, EV_REL, REL_X, originalX); in testMotionRotation()
183 args += process(ARBITRARY_TIME, EV_REL, REL_Y, originalY); in testMotionRotation()
224 args += process(EV_REL, REL_X, 10); in TEST_F()
225 args += process(EV_REL, REL_Y, 20); in TEST_F()
239 args += process(EV_REL, REL_X, 10); in TEST_F()
240 args += process(EV_REL, REL_Y, 20); in TEST_F()
269 args += process(EV_REL, REL_X, 10); in TEST_F()
270 args += process(EV_REL, REL_Y, 20); in TEST_F()
311 args += process(EV_REL, REL_X, 30); in TEST_F()
312 args += process(EV_REL, REL_Y, 40); in TEST_F()
[all …]
DUinputDevice.cpp184 ioctl(fd, UI_SET_EVBIT, EV_REL); in configureDevice()
/frameworks/native/services/inputflinger/reader/mapper/accumulator/
DCursorScrollAccumulator.cpp43 if (rawEvent.type == EV_REL) { in process()
/frameworks/base/cmds/uinput/src/com/android/commands/uinput/
DEvent.java46 public static final int EV_REL = 0x02; field in Event
83 case EV_REL -> UI_SET_RELBIT; in forEventType()
DJsonStyleParser.java251 case UI_SET_RELBIT -> readArrayAsInts(() -> readEvdevEventCode(Event.EV_REL));
/frameworks/native/libs/input/
DVirtualInputDevice.cpp268 return writeInputEvent(EV_REL, REL_X, relativeX, eventTime) && in writeRelativeEvent()
269 writeInputEvent(EV_REL, REL_Y, relativeY, eventTime) && in writeRelativeEvent()
275 return writeInputEvent(EV_REL, REL_HWHEEL, xAxisMovement, eventTime) && in writeScrollEvent()
276 writeInputEvent(EV_REL, REL_WHEEL, yAxisMovement, eventTime) && in writeScrollEvent()
DInputEventLabels.cpp544 case EV_REL: in getCodeLabelsForType()
/frameworks/native/services/vr/virtual_touchpad/
DEvdevInjector.cpp180 if (const int status = EnableEventType(EV_REL)) { in ConfigureRel()
259 return Send(EV_REL, code, value); in SendRel()
/frameworks/base/cmds/uinput/tests/src/com/android/commands/uinput/tests/
DEvemuParserTest.java100 .asList().containsExactly(Event.EV_KEY, Event.EV_REL); in testEventBitmapParsing()
/frameworks/native/services/vr/virtual_touchpad/tests/
DVirtualTouchpad_test.cpp161 expect.IoctlSetInt(UI_SET_EVBIT, EV_REL); in TEST_F()
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h32 EV_REL,
/frameworks/base/services/core/jni/
Dcom_android_server_companion_virtual_InputController.cpp80 ioctl(fd, UI_SET_EVBIT, EV_REL); in openUinput()
/frameworks/native/services/inputflinger/reader/mapper/
DCursorInputMapper.cpp59 if (rawEvent.type == EV_REL) { in process()
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp2361 device->readDeviceBitMask(EVIOCGBIT(EV_REL, 0), device->relBitmask); in openDeviceLocked()