Home | History | Annotate | Download | only in input

Lines Matching defs:InputReader

17 #define LOG_TAG "InputReader"
42 #include "InputReader.h"
221 // --- InputReader ---
223 InputReader::InputReader(const sp<EventHubInterface>& eventHub,
240 InputReader::~InputReader() {
246 void InputReader::loopOnce() {
302 // back into the InputReader's methods, such as getScanCodeState, or become blocked
303 // on another thread similarly waiting to acquire the InputReader lock thereby
310 void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) {
348 void InputReader::addDeviceLocked(nsecs_t when, int32_t deviceId) {
375 void InputReader::removeDeviceLocked(nsecs_t when, int32_t deviceId) {
399 InputDevice* InputReader::createDeviceLocked(int32_t deviceId, int32_t controllerNumber,
459 void InputReader::processEventsForDeviceLocked(int32_t deviceId,
476 void InputReader::timeoutExpiredLocked(nsecs_t when) {
485 void InputReader::handleConfigurationChangedLocked(nsecs_t when) {
494 void InputReader::refreshConfigurationLocked(uint32_t changes) {
513 void InputReader::updateGlobalMetaStateLocked() {
522 int32_t InputReader::getGlobalMetaStateLocked() {
526 void InputReader::disableVirtualKeysUntilLocked(nsecs_t time) {
530 bool InputReader::shouldDropVirtualKeyLocked(nsecs_t now,
544 void InputReader::fadePointerLocked() {
551 void InputReader::requestTimeoutAtTimeLocked(nsecs_t when) {
558 int32_t InputReader::bumpGenerationLocked() {
562 void InputReader::getInputDevices(Vector<InputDeviceInfo>& outInputDevices) {
567 void InputReader::getInputDevicesLocked(Vector<InputDeviceInfo>& outInputDevices) {
580 int32_t InputReader::getKeyCodeState(int32_t deviceId, uint32_t sourceMask,
587 int32_t InputReader::getScanCodeState(int32_t deviceId, uint32_t sourceMask,
594 int32_t InputReader::getSwitchState(int32_t deviceId, uint32_t sourceMask, int32_t switchCode) {
600 int32_t InputReader::getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code,
630 bool InputReader::hasKeys(int32_t deviceId, uint32_t sourceMask,
638 bool InputReader::markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask,
663 void InputReader::requestRefreshConfiguration(uint32_t changes) {
676 void InputReader::vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize,
687 void InputReader::cancelVibrate(int32_t deviceId, int32_t token) {
697 void InputReader::dump(String8& dump) {
762 void InputReader::monitor() {
774 // --- InputReader::ContextImpl ---
776 InputReader::ContextImpl::ContextImpl(InputReader* reader) :
780 void InputReader::ContextImpl::updateGlobalMetaState() {
785 int32_t InputReader::ContextImpl::getGlobalMetaState() {
790 void InputReader::ContextImpl::disableVirtualKeysUntil(nsecs_t time) {
795 bool InputReader::ContextImpl::shouldDropVirtualKey(nsecs_t now,
801 void InputReader::ContextImpl::fadePointer() {
806 void InputReader::ContextImpl::requestTimeoutAtTime(nsecs_t when) {
811 int32_t InputReader::ContextImpl::bumpGeneration() {
816 InputReaderPolicyInterface* InputReader::ContextImpl::getPolicy() {
820 InputListenerInterface* InputReader::ContextImpl::getListener() {
824 EventHubInterface* InputReader::ContextImpl::getEventHub() {