Lines Matching refs:EventHub
140 EventHub::Device::Device(int fd, int32_t id, const String8& path, in Device()
156 EventHub::Device::~Device() { in ~Device()
162 void EventHub::Device::close() { in close()
172 const uint32_t EventHub::EPOLL_ID_INOTIFY;
173 const uint32_t EventHub::EPOLL_ID_WAKE;
174 const int EventHub::EPOLL_SIZE_HINT;
175 const int EventHub::EPOLL_MAX_EVENTS;
177 EventHub::EventHub(void) : in EventHub() function in android::EventHub
226 EventHub::~EventHub(void) { in ~EventHub()
243 InputDeviceIdentifier EventHub::getDeviceIdentifier(int32_t deviceId) const { in getDeviceIdentifier()
250 uint32_t EventHub::getDeviceClasses(int32_t deviceId) const { in getDeviceClasses()
257 int32_t EventHub::getDeviceControllerNumber(int32_t deviceId) const { in getDeviceControllerNumber()
264 void EventHub::getConfiguration(int32_t deviceId, PropertyMap* outConfiguration) const { in getConfiguration()
274 status_t EventHub::getAbsoluteAxisInfo(int32_t deviceId, int axis, in getAbsoluteAxisInfo()
304 bool EventHub::hasRelativeAxis(int32_t deviceId, int axis) const { in hasRelativeAxis()
316 bool EventHub::hasInputProperty(int32_t deviceId, int property) const { in hasInputProperty()
328 int32_t EventHub::getScanCodeState(int32_t deviceId, int32_t scanCode) const { in getScanCodeState()
344 int32_t EventHub::getKeyCodeState(int32_t deviceId, int32_t keyCode) const { in getKeyCodeState()
368 int32_t EventHub::getSwitchState(int32_t deviceId, int32_t sw) const { in getSwitchState()
384 status_t EventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const { in getAbsoluteAxisValue()
406 bool EventHub::markSupportedKeyCodes(int32_t deviceId, size_t numCodes, in markSupportedKeyCodes()
434 status_t EventHub::mapKey(int32_t deviceId, int32_t scanCode, int32_t usageCode, in mapKey()
463 status_t EventHub::mapAxis(int32_t deviceId, int32_t scanCode, AxisInfo* outAxisInfo) const { in mapAxis()
477 void EventHub::setExcludedDevices(const Vector<String8>& devices) { in setExcludedDevices()
483 bool EventHub::hasScanCode(int32_t deviceId, int32_t scanCode) const { in hasScanCode()
494 bool EventHub::hasLed(int32_t deviceId, int32_t led) const { in hasLed()
506 void EventHub::setLedState(int32_t deviceId, int32_t led, bool on) { in setLedState()
512 void EventHub::setLedStateLocked(Device* device, int32_t led, bool on) { in setLedStateLocked()
529 void EventHub::getVirtualKeyDefinitions(int32_t deviceId, in getVirtualKeyDefinitions()
540 sp<KeyCharacterMap> EventHub::getKeyCharacterMap(int32_t deviceId) const { in getKeyCharacterMap()
549 bool EventHub::setKeyboardLayoutOverlay(int32_t deviceId, in setKeyboardLayoutOverlay()
593 void EventHub::assignDescriptorLocked(InputDeviceIdentifier& identifier) { in assignDescriptorLocked()
615 void EventHub::vibrate(int32_t deviceId, nsecs_t duration) { in vibrate()
649 void EventHub::cancelVibrate(int32_t deviceId) { in cancelVibrate()
671 EventHub::Device* EventHub::getDeviceByDescriptorLocked(String8& descriptor) const { in getDeviceByDescriptorLocked()
682 EventHub::Device* EventHub::getDeviceLocked(int32_t deviceId) const { in getDeviceLocked()
690 EventHub::Device* EventHub::getDeviceByPathLocked(const char* devicePath) const { in getDeviceByPathLocked()
700 size_t EventHub::getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSize) { in getEvents()
1006 void EventHub::wake() { in wake()
1019 void EventHub::scanDevicesLocked() { in scanDevicesLocked()
1051 status_t EventHub::openDeviceLocked(const char *devicePath) { in openDeviceLocked()
1356 void EventHub::createVirtualKeyboardLocked() { in createVirtualKeyboardLocked()
1371 void EventHub::addDeviceLocked(Device* device) { in addDeviceLocked()
1377 void EventHub::loadConfigurationLocked(Device* device) { in loadConfigurationLocked()
1394 status_t EventHub::loadVirtualKeyMapLocked(Device* device) { in loadVirtualKeyMapLocked()
1405 status_t EventHub::loadKeyMapLocked(Device* device) { in loadKeyMapLocked()
1409 bool EventHub::isExternalDeviceLocked(Device* device) { in isExternalDeviceLocked()
1419 int32_t EventHub::getNextControllerNumberLocked(Device* device) { in getNextControllerNumberLocked()
1430 void EventHub::releaseControllerNumberLocked(Device* device) { in releaseControllerNumberLocked()
1439 void EventHub::setLedForController(Device* device) { in setLedForController()
1445 bool EventHub::hasKeycodeLocked(Device* device, int keycode) const { in hasKeycodeLocked()
1463 status_t EventHub::mapLed(Device* device, int32_t led, int32_t* outScanCode) const { in mapLed()
1478 status_t EventHub::closeDeviceByPathLocked(const char *devicePath) { in closeDeviceByPathLocked()
1488 void EventHub::closeAllDevicesLocked() { in closeAllDevicesLocked()
1494 void EventHub::closeDeviceLocked(Device* device) { in closeDeviceLocked()
1546 status_t EventHub::readNotifyLocked() { in readNotifyLocked()
1588 status_t EventHub::scanDirLocked(const char *dirname) in scanDirLocked()
1612 void EventHub::requestReopenDevices() { in requestReopenDevices()
1619 void EventHub::dump(String8& dump) { in dump()
1660 void EventHub::monitor() { in monitor()