Lines Matching defs:InputReader
17 #define LOG_TAG "InputReader"
39 #include "InputReader.h"
234 // --- InputReader ---
236 InputReader::InputReader(const sp<EventHubInterface>& eventHub,
253 InputReader::~InputReader() {
259 void InputReader::loopOnce() {
297 // back into the InputReader's methods, such as getScanCodeState, or become blocked
298 // on another thread similarly waiting to acquire the InputReader lock thereby
305 void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) {
343 void InputReader::addDeviceLocked(nsecs_t when, int32_t deviceId) {
368 void InputReader::removeDeviceLocked(nsecs_t when, int32_t deviceId) {
391 InputDevice* InputReader::createDeviceLocked(int32_t deviceId,
445 void InputReader::processEventsForDeviceLocked(int32_t deviceId,
462 void InputReader::timeoutExpiredLocked(nsecs_t when) {
471 void InputReader::handleConfigurationChangedLocked(nsecs_t when) {
483 void InputReader::refreshConfigurationLocked(uint32_t changes) {
502 void InputReader::updateGlobalMetaStateLocked() {
511 int32_t InputReader::getGlobalMetaStateLocked() {
515 void InputReader::updateInputConfigurationLocked() {
543 void InputReader::disableVirtualKeysUntilLocked(nsecs_t time) {
547 bool InputReader::shouldDropVirtualKeyLocked(nsecs_t now,
561 void InputReader::fadePointerLocked() {
568 void InputReader::requestTimeoutAtTimeLocked(nsecs_t when) {
574 void InputReader::getInputConfiguration(InputConfiguration* outConfiguration) {
580 status_t InputReader::getInputDeviceInfo(int32_t deviceId, InputDeviceInfo* outDeviceInfo) {
597 void InputReader::getInputDeviceIds(Vector<int32_t>& outDeviceIds) {
611 int32_t InputReader::getKeyCodeState(int32_t deviceId, uint32_t sourceMask,
618 int32_t InputReader::getScanCodeState(int32_t deviceId, uint32_t sourceMask,
625 int32_t InputReader::getSwitchState(int32_t deviceId, uint32_t sourceMask, int32_t switchCode) {
631 int32_t InputReader::getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code,
657 bool InputReader::hasKeys(int32_t deviceId, uint32_t sourceMask,
665 bool InputReader::markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask,
690 void InputReader::requestRefreshConfiguration(uint32_t changes) {
703 void InputReader::dump(String8& dump) {
768 void InputReader::monitor() {
778 // --- InputReader::ContextImpl ---
780 InputReader::ContextImpl::ContextImpl(InputReader* reader) :
784 void InputReader::ContextImpl::updateGlobalMetaState() {
789 int32_t InputReader::ContextImpl::getGlobalMetaState() {
794 void InputReader::ContextImpl::disableVirtualKeysUntil(nsecs_t time) {
799 bool InputReader::ContextImpl::shouldDropVirtualKey(nsecs_t now,
805 void InputReader::ContextImpl::fadePointer() {
810 void InputReader::ContextImpl::requestTimeoutAtTime(nsecs_t when) {
815 InputReaderPolicyInterface* InputReader::ContextImpl::getPolicy() {
819 InputListenerInterface* InputReader::ContextImpl::getListener() {
823 EventHubInterface* InputReader::ContextImpl::getEventHub() {