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