Home
last modified time | relevance | path

Searched refs:IoctlSetInt (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/services/vr/virtual_touchpad/tests/
DVirtualTouchpad_test.cpp67 int IoctlSetInt(int request, int value) override { in IoctlSetInt() function in android::dvr::__anon0fdb4b940111::UInputRecorder
153 expect.IoctlSetInt(UI_SET_PROPBIT, INPUT_PROP_DIRECT); in TEST_F()
155 expect.IoctlSetInt(UI_SET_EVBIT, EV_ABS); in TEST_F()
156 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_POSITION_X); in TEST_F()
157 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_POSITION_Y); in TEST_F()
159 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_SLOT); in TEST_F()
161 expect.IoctlSetInt(UI_SET_EVBIT, EV_REL); in TEST_F()
162 expect.IoctlSetInt(UI_SET_RELBIT, REL_WHEEL); in TEST_F()
164 expect.IoctlSetInt(UI_SET_RELBIT, REL_HWHEEL); in TEST_F()
166 expect.IoctlSetInt(UI_SET_EVBIT, EV_KEY); in TEST_F()
[all …]
/frameworks/native/services/vr/virtual_touchpad/
DEvdevInjector.cpp39 int EvdevInjector::UInput::IoctlSetInt(int request, int value) { in IoctlSetInt() function in android::dvr::EvdevInjector::UInput
105 if (const int status = uinput_->IoctlSetInt(UI_SET_PROPBIT, property)) { in ConfigureInputProperty()
124 if (const int status = uinput_->IoctlSetInt(UI_SET_KEYBIT, key)) { in ConfigureKey()
146 if (const int status = uinput_->IoctlSetInt(UI_SET_ABSBIT, abs_type)) { in ConfigureAbs()
183 if (const int status = uinput_->IoctlSetInt(UI_SET_RELBIT, rel_type)) { in ConfigureRel()
325 if (const int status = uinput_->IoctlSetInt(UI_SET_EVBIT, type)) { in EnableEventType()
DEvdevInjector.h50 virtual int IoctlSetInt(int request, int value);