• Home
  • Raw
  • Download

Lines Matching refs:EventHub

160 EventHub::Device::Device(int fd, int32_t id, const String8& path,  in Device()
175 EventHub::Device::~Device() { in ~Device()
181 void EventHub::Device::close() { in close()
191 const uint32_t EventHub::EPOLL_ID_INOTIFY;
192 const uint32_t EventHub::EPOLL_ID_WAKE;
193 const int EventHub::EPOLL_SIZE_HINT;
194 const int EventHub::EPOLL_MAX_EVENTS;
196 EventHub::EventHub(void) : in EventHub() function in android::EventHub
240 EventHub::~EventHub(void) { in ~EventHub()
257 InputDeviceIdentifier EventHub::getDeviceIdentifier(int32_t deviceId) const { in getDeviceIdentifier()
264 uint32_t EventHub::getDeviceClasses(int32_t deviceId) const { in getDeviceClasses()
271 void EventHub::getConfiguration(int32_t deviceId, PropertyMap* outConfiguration) const { in getConfiguration()
281 status_t EventHub::getAbsoluteAxisInfo(int32_t deviceId, int axis, in getAbsoluteAxisInfo()
311 bool EventHub::hasRelativeAxis(int32_t deviceId, int axis) const { in hasRelativeAxis()
323 bool EventHub::hasInputProperty(int32_t deviceId, int property) const { in hasInputProperty()
335 int32_t EventHub::getScanCodeState(int32_t deviceId, int32_t scanCode) const { in getScanCodeState()
351 int32_t EventHub::getKeyCodeState(int32_t deviceId, int32_t keyCode) const { in getKeyCodeState()
375 int32_t EventHub::getSwitchState(int32_t deviceId, int32_t sw) const { in getSwitchState()
391 status_t EventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const { in getAbsoluteAxisValue()
413 bool EventHub::markSupportedKeyCodes(int32_t deviceId, size_t numCodes, in markSupportedKeyCodes()
441 status_t EventHub::mapKey(int32_t deviceId, int32_t scanCode, int32_t usageCode, in mapKey()
470 status_t EventHub::mapAxis(int32_t deviceId, int32_t scanCode, AxisInfo* outAxisInfo) const { in mapAxis()
484 void EventHub::setExcludedDevices(const Vector<String8>& devices) { in setExcludedDevices()
490 bool EventHub::hasScanCode(int32_t deviceId, int32_t scanCode) const { in hasScanCode()
501 bool EventHub::hasLed(int32_t deviceId, int32_t led) const { in hasLed()
512 void EventHub::setLedState(int32_t deviceId, int32_t led, bool on) { in setLedState()
530 void EventHub::getVirtualKeyDefinitions(int32_t deviceId, in getVirtualKeyDefinitions()
541 sp<KeyCharacterMap> EventHub::getKeyCharacterMap(int32_t deviceId) const { in getKeyCharacterMap()
550 bool EventHub::setKeyboardLayoutOverlay(int32_t deviceId, in setKeyboardLayoutOverlay()
565 void EventHub::vibrate(int32_t deviceId, nsecs_t duration) { in vibrate()
599 void EventHub::cancelVibrate(int32_t deviceId) { in cancelVibrate()
621 EventHub::Device* EventHub::getDeviceLocked(int32_t deviceId) const { in getDeviceLocked()
629 EventHub::Device* EventHub::getDeviceByPathLocked(const char* devicePath) const { in getDeviceByPathLocked()
639 size_t EventHub::getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSize) { in getEvents()
884 void EventHub::wake() { in wake()
897 void EventHub::scanDevicesLocked() { in scanDevicesLocked()
933 status_t EventHub::openDeviceLocked(const char *devicePath) { in openDeviceLocked()
1215 void EventHub::createVirtualKeyboardLocked() { in createVirtualKeyboardLocked()
1230 void EventHub::addDeviceLocked(Device* device) { in addDeviceLocked()
1236 void EventHub::loadConfigurationLocked(Device* device) { in loadConfigurationLocked()
1253 status_t EventHub::loadVirtualKeyMapLocked(Device* device) { in loadVirtualKeyMapLocked()
1264 status_t EventHub::loadKeyMapLocked(Device* device) { in loadKeyMapLocked()
1268 bool EventHub::isExternalDeviceLocked(Device* device) { in isExternalDeviceLocked()
1278 bool EventHub::hasKeycodeLocked(Device* device, int keycode) const { in hasKeycodeLocked()
1296 status_t EventHub::closeDeviceByPathLocked(const char *devicePath) { in closeDeviceByPathLocked()
1306 void EventHub::closeAllDevicesLocked() { in closeAllDevicesLocked()
1312 void EventHub::closeDeviceLocked(Device* device) { in closeDeviceLocked()
1362 status_t EventHub::readNotifyLocked() { in readNotifyLocked()
1404 status_t EventHub::scanDirLocked(const char *dirname) in scanDirLocked()
1428 void EventHub::requestReopenDevices() { in requestReopenDevices()
1435 void EventHub::dump(String8& dump) { in dump()
1475 void EventHub::monitor() { in monitor()