Lines Matching refs:eventHubId
172 void InputDevice::addEmptyEventHubDevice(int32_t eventHubId) { in addEmptyEventHubDevice() argument
173 if (mDevices.find(eventHubId) != mDevices.end()) { in addEmptyEventHubDevice()
176 std::unique_ptr<InputDeviceContext> contextPtr(new InputDeviceContext(*this, eventHubId)); in addEmptyEventHubDevice()
179 mDevices.insert({eventHubId, std::make_pair(std::move(contextPtr), std::move(mappers))}); in addEmptyEventHubDevice()
183 nsecs_t when, int32_t eventHubId, const InputReaderConfiguration& readerConfig) { in addEventHubDevice() argument
184 if (mDevices.find(eventHubId) != mDevices.end()) { in addEventHubDevice()
192 addEmptyEventHubDevice(eventHubId); in addEventHubDevice()
195 DevicePair& devicePair = mDevices[eventHubId]; in addEventHubDevice()
203 void InputDevice::removeEventHubDevice(int32_t eventHubId) { in removeEventHubDevice() argument
204 if (mController != nullptr && mController->getEventHubId() == eventHubId) { in removeEventHubDevice()
208 mDevices.erase(eventHubId); in removeEventHubDevice()
743 InputDeviceContext::InputDeviceContext(InputDevice& device, int32_t eventHubId) in InputDeviceContext() argument
747 mId(eventHubId), in InputDeviceContext()