Searched refs:hasInputProperty (Results 1 – 12 of 12) sorted by relevance
/frameworks/native/services/inputflinger/reader/mapper/gestures/ |
D | HardwareProperties.cpp | 63 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/ |
D | TouchpadInputMapper_test.cpp | 86 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_BUTTONPAD)) in SetUp() 88 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_SEMI_MT)) in SetUp()
|
D | MultiTouchInputMapper_test.cpp | 81 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, _)).WillRepeatedly(Return(false)); in SetUp() 82 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, INPUT_PROP_DIRECT)) in SetUp()
|
D | HardwareProperties_test.cpp | 72 EXPECT_CALL(mMockEventHub, hasInputProperty(EVENTHUB_ID, property)) in setProperty()
|
D | InterfaceMocks.h | 97 MOCK_METHOD(bool, hasInputProperty, (int32_t deviceId, int property), (const));
|
D | FakeEventHub.h | 174 bool hasInputProperty(int32_t, int) const override;
|
D | FakeEventHub.cpp | 288 bool FakeEventHub::hasInputProperty(int32_t, int) const { in hasInputProperty() function in android::FakeEventHub
|
/frameworks/native/services/inputflinger/reader/include/ |
D | InputDevice.h | 325 inline bool hasInputProperty(int32_t property) const { in hasInputProperty() function 326 return mEventHub->hasInputProperty(mId, property); in hasInputProperty()
|
D | EventHub.h | 286 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/ |
D | MapperHelpers.h | 134 bool hasInputProperty(int32_t deviceId, int property) const override { in hasInputProperty() function
|
/frameworks/native/services/inputflinger/reader/mapper/ |
D | TouchInputMapper.cpp | 372 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/ |
D | EventHub.cpp | 1032 bool EventHub::hasInputProperty(int32_t deviceId, int property) const { in hasInputProperty() function in android::EventHub
|