Home
last modified time | relevance | path

Searched refs:InputProperty (Results 1 – 3 of 3) sorted by relevance

/hardware/libhardware/modules/input/evdev/
DInputHost.h111 class InputProperty : private InputHostBase {
113 virtual ~InputProperty() = default;
115 InputProperty(input_host_t* host, input_host_callbacks_t cb, input_property_t* p) : in InputProperty() function
123 InputProperty(const InputProperty& rhs) = delete;
124 InputProperty& operator=(const InputProperty& rhs) = delete;
136 virtual InputProperty* getDeviceProperty(const char* key) const;
137 virtual void freeDeviceProperty(InputProperty* property) const;
DInputHost.cpp60 const char* InputProperty::getKey() const { in getKey()
64 const char* InputProperty::getValue() const { in getValue()
68 InputProperty* InputPropertyMap::getDeviceProperty(const char* key) const { in getDeviceProperty()
69 return new InputProperty(mHost, mCallbacks, in getDeviceProperty()
73 void InputPropertyMap::freeDeviceProperty(InputProperty* property) const { in freeDeviceProperty()
/hardware/libhardware/tests/input/evdev/
DMockInputHost.h54 class MockInputProperty : public InputProperty {
56 MockInputProperty() : InputProperty(nullptr, {}, nullptr) {} in MockInputProperty()
66 MOCK_CONST_METHOD1(getDeviceProperty, InputProperty*(const char* key));
67 MOCK_CONST_METHOD1(freeDeviceProperty, void(InputProperty* property));