Searched refs:IoctlSetInt (Results 1 - 3 of 3) sorted by last modified time

/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp39 int EvdevInjector::UInput::IoctlSetInt(int request, int value) { function in class:android::dvr::EvdevInjector::UInput
40 ALOGV("UInput::IoctlSetInt(0x%X, 0x%X)", request, value);
105 if (const int status = uinput_->IoctlSetInt(UI_SET_PROPBIT, property)) {
124 if (const int status = uinput_->IoctlSetInt(UI_SET_KEYBIT, key)) {
146 if (const int status = uinput_->IoctlSetInt(UI_SET_ABSBIT, abs_type)) {
302 if (const int status = uinput_->IoctlSetInt(UI_SET_EVBIT, type)) {
H A DEvdevInjector.h49 virtual int IoctlSetInt(int request, int value);
/frameworks/native/services/vr/virtual_touchpad/tests/
H A DVirtualTouchpad_test.cpp67 int IoctlSetInt(int request, int value) override {
165 expect.IoctlSetInt(UI_SET_PROPBIT, INPUT_PROP_DIRECT);
167 expect.IoctlSetInt(UI_SET_EVBIT, EV_ABS);
168 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_POSITION_X);
169 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_POSITION_Y);
171 expect.IoctlSetInt(UI_SET_ABSBIT, ABS_MT_SLOT);
173 expect.IoctlSetInt(UI_SET_EVBIT, EV_KEY);
174 expect.IoctlSetInt(UI_SET_KEYBIT, BTN_TOUCH);
175 expect.IoctlSetInt(UI_SET_KEYBIT, BTN_BACK);

Completed in 1115 milliseconds