Lines Matching refs:mEventHub

209     inline uint32_t getDeviceClasses() const { return mEventHub->getDeviceClasses(mId); }  in getDeviceClasses()
211 return mEventHub->getDeviceIdentifier(mId); in getDeviceIdentifier()
214 return mEventHub->getDeviceControllerNumber(mId); in getDeviceControllerNumber()
217 return mEventHub->getConfiguration(mId, outConfiguration); in getConfiguration()
220 return mEventHub->getAbsoluteAxisInfo(mId, code, axisInfo); in getAbsoluteAxisInfo()
223 return mEventHub->hasRelativeAxis(mId, code); in hasRelativeAxis()
226 return mEventHub->hasInputProperty(mId, property); in hasInputProperty()
230 return mEventHub->mapKey(mId, scanCode, usageCode, metaState, outKeycode, outMetaState, in mapKey()
234 return mEventHub->mapAxis(mId, scanCode, outAxisInfo); in mapAxis()
236 inline std::vector<TouchVideoFrame> getVideoFrames() { return mEventHub->getVideoFrames(mId); } in getVideoFrames()
238 return mEventHub->getScanCodeState(mId, scanCode); in getScanCodeState()
241 return mEventHub->getKeyCodeState(mId, keyCode); in getKeyCodeState()
243 inline int32_t getSwitchState(int32_t sw) const { return mEventHub->getSwitchState(mId, sw); } in getSwitchState()
245 return mEventHub->getAbsoluteAxisValue(mId, code, outValue); in getAbsoluteAxisValue()
249 return mEventHub->markSupportedKeyCodes(mId, numCodes, keyCodes, outFlags); in markSupportedKeyCodes()
252 return mEventHub->hasScanCode(mId, scanCode); in hasScanCode()
254 inline bool hasLed(int32_t led) const { return mEventHub->hasLed(mId, led); } in hasLed()
255 inline void setLedState(int32_t led, bool on) { return mEventHub->setLedState(mId, led, on); } in setLedState()
257 return mEventHub->getVirtualKeyDefinitions(mId, outVirtualKeys); in getVirtualKeyDefinitions()
260 return mEventHub->getKeyCharacterMap(mId); in getKeyCharacterMap()
263 return mEventHub->setKeyboardLayoutOverlay(mId, map); in setKeyboardLayoutOverlay()
265 inline void vibrate(nsecs_t duration) { return mEventHub->vibrate(mId, duration); } in vibrate()
266 inline void cancelVibrate() { return mEventHub->cancelVibrate(mId); } in cancelVibrate()
270 mEventHub->getAbsoluteAxisInfo(mId, code, &info); in hasAbsoluteAxis()
274 return mEventHub->getScanCodeState(mId, code) == AKEY_STATE_DOWN; in isKeyPressed()
278 mEventHub->getAbsoluteAxisValue(mId, code, &value); in getAbsoluteAxisValue()
281 inline bool isDeviceEnabled() { return mEventHub->isDeviceEnabled(mId); } in isDeviceEnabled()
282 inline status_t enableDevice() { return mEventHub->enableDevice(mId); } in enableDevice()
283 inline status_t disableDevice() { return mEventHub->disableDevice(mId); } in disableDevice()
301 EventHubInterface* mEventHub; variable