Home
last modified time | relevance | path

Searched refs:controllerNumber (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/libs/input/
DInputDevice.cpp168 void InputDeviceInfo::initialize(int32_t id, int32_t generation, int32_t controllerNumber, in initialize() argument
173 mControllerNumber = controllerNumber; in initialize()
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp190 int32_t controllerNumber = mEventHub->getDeviceControllerNumber(deviceId); in addDeviceLocked() local
192 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes); in addDeviceLocked()
240 InputDevice* InputReader::createDeviceLocked(int32_t deviceId, int32_t controllerNumber, in createDeviceLocked() argument
244 controllerNumber, identifier, classes); in createDeviceLocked()
DInputDevice.cpp26 int32_t controllerNumber, const InputDeviceIdentifier& identifier, in InputDevice() argument
31 mControllerNumber(controllerNumber), in InputDevice()
DEventHub.cpp205 controllerNumber(0), in Device()
351 return device->controllerNumber; in getDeviceControllerNumber()
1447 device->controllerNumber = getNextControllerNumberLocked(device); in openDeviceLocked()
1674 int32_t num = device->controllerNumber; in releaseControllerNumberLocked()
1675 device->controllerNumber = 0; in releaseControllerNumberLocked()
1684 setLedStateLocked(device, ALED_CONTROLLER_1 + i, device->controllerNumber == i + 1); in setLedForControllerLocked()
1935 dump += StringPrintf(INDENT3 "ControllerNumber: %d\n", device->controllerNumber); in dump()
/frameworks/native/include/input/
DInputDevice.h85 void initialize(int32_t id, int32_t generation, int32_t controllerNumber,
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h40 int32_t controllerNumber, const InputDeviceIdentifier& identifier,
DInputReader.h83 virtual InputDevice* createDeviceLocked(int32_t deviceId, int32_t controllerNumber,
DEventHub.h353 int32_t controllerNumber; member
/frameworks/base/core/java/android/view/
DInputDevice.java412 private InputDevice(int id, int generation, int controllerNumber, String name, int vendorId, in InputDevice() argument
418 mControllerNumber = controllerNumber; in InputDevice()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp1043 InputDevice* newDevice(int32_t deviceId, int32_t controllerNumber, const std::string& name, in newDevice() argument
1049 return new InputDevice(&mContext, deviceId, generation, controllerNumber, identifier, in newDevice()
1054 virtual InputDevice* createDeviceLocked(int32_t deviceId, int32_t controllerNumber, in createDeviceLocked() argument
1061 return InputReader::createDeviceLocked(deviceId, controllerNumber, identifier, classes); in createDeviceLocked()
1305 FakeInputMapper* addDeviceWithFakeInputMapper(int32_t deviceId, int32_t controllerNumber, in addDeviceWithFakeInputMapper() argument
1308 InputDevice* device = mReader->newDevice(deviceId, controllerNumber, name, classes); in addDeviceWithFakeInputMapper()