Home
last modified time | relevance | path

Searched refs:hasInputProperty (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/services/inputflinger/reader/mapper/gestures/
DHardwareProperties.cpp63 props.support_semi_mt = context.hasInputProperty(INPUT_PROP_SEMI_MT); in createHardwareProperties()
64 props.is_button_pad = context.hasInputProperty(INPUT_PROP_BUTTONPAD); in createHardwareProperties()
/frameworks/native/services/inputflinger/tests/
DTouchpadInputMapper_test.cpp86 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_BUTTONPAD)) in SetUp()
88 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_SEMI_MT)) in SetUp()
DMultiTouchInputMapper_test.cpp81 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, _)).WillRepeatedly(Return(false)); in SetUp()
82 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_DIRECT)) in SetUp()
DHardwareProperties_test.cpp72 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, property)) in setProperty()
DInterfaceMocks.h97 MOCK_METHOD(bool, hasInputProperty, (int32_t deviceId, int property), (const));
DFakeEventHub.h174 bool hasInputProperty(int32_t, int) const override;
DFakeEventHub.cpp288 bool FakeEventHub::hasInputProperty(int32_t, int) const { in hasInputProperty() function in android::FakeEventHub
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h325 inline bool hasInputProperty(int32_t property) const { in hasInputProperty() function
326 return mEventHub->hasInputProperty(mId, property); in hasInputProperty()
DEventHub.h286 virtual bool hasInputProperty(int32_t deviceId, int property) const = 0;
519 bool hasInputProperty(int32_t deviceId, int property) const override final;
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h134 bool hasInputProperty(int32_t deviceId, int property) const override { in hasInputProperty() function
/frameworks/native/services/inputflinger/reader/mapper/
DTouchInputMapper.cpp372 parameters.gestureMode = deviceContext.hasInputProperty(INPUT_PROP_SEMI_MT) in computeParameters()
390 parameters.hasButtonUnderPad = deviceContext.hasInputProperty(INPUT_PROP_BUTTONPAD); in computeParameters()
452 if (deviceContext.hasInputProperty(INPUT_PROP_DIRECT)) { in computeDeviceType()
455 } else if (deviceContext.hasInputProperty(INPUT_PROP_POINTER)) { in computeDeviceType()
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp1032 bool EventHub::hasInputProperty(int32_t deviceId, int property) const { in hasInputProperty() function in android::EventHub