Lines Matching refs:property
257 const char* InputDriver::inputGetPropertyKey(input_property_t* property) { in inputGetPropertyKey() argument
258 if (property != nullptr) { in inputGetPropertyKey()
259 return property->key.string(); in inputGetPropertyKey()
264 const char* InputDriver::inputGetPropertyValue(input_property_t* property) { in inputGetPropertyValue() argument
265 if (property != nullptr) { in inputGetPropertyValue()
266 return property->value.string(); in inputGetPropertyValue()
271 void InputDriver::inputFreeDeviceProperty(input_property_t* property) { in inputFreeDeviceProperty() argument
272 if (property != nullptr) { in inputFreeDeviceProperty()
273 delete property; in inputFreeDeviceProperty()
392 const char* input_get_property_key(input_host_t* host, input_property_t* property) { in input_get_property_key() argument
394 return driver->inputGetPropertyKey(property); in input_get_property_key()
397 const char* input_get_property_value(input_host_t* host, input_property_t* property) { in input_get_property_value() argument
399 return driver->inputGetPropertyValue(property); in input_get_property_value()
402 void input_free_device_property(input_host_t* host, input_property_t* property) { in input_free_device_property() argument
404 driver->inputFreeDeviceProperty(property); in input_free_device_property()