Lines Matching refs:driver

297     auto driver = static_cast<InputDriverInterface*>(host);  in create_device_identifier()  local
298 return driver->createDeviceIdentifier(name, product_id, vendor_id, bus, unique_id); in create_device_identifier()
302 auto driver = static_cast<InputDriverInterface*>(host); in create_device_definition() local
303 return driver->createDeviceDefinition(); in create_device_definition()
307 auto driver = static_cast<InputDriverInterface*>(host); in create_input_report_definition() local
308 return driver->createInputReportDefinition(); in create_input_report_definition()
312 auto driver = static_cast<InputDriverInterface*>(host); in create_output_report_definition() local
313 return driver->createOutputReportDefinition(); in create_output_report_definition()
317 auto driver = static_cast<InputDriverInterface*>(host); in free_report_definition() local
318 driver->freeReportDefinition(report_def); in free_report_definition()
323 auto driver = static_cast<InputDriverInterface*>(host); in input_device_definition_add_report() local
324 driver->inputDeviceDefinitionAddReport(d, r); in input_device_definition_add_report()
329 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_add_collection() local
330 driver->inputReportDefinitionAddCollection(report, id, arity); in input_report_definition_add_collection()
336 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_declare_usage_int() local
337 driver->inputReportDefinitionDeclareUsageInt(report, id, usage, min, max, resolution); in input_report_definition_declare_usage_int()
343 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_declare_usages_bool() local
344 driver->inputReportDefinitionDeclareUsagesBool(report, id, usage, usage_count); in input_report_definition_declare_usages_bool()
349 auto driver = static_cast<InputDriverInterface*>(host); in register_device() local
350 return driver->registerDevice(id, d); in register_device()
354 auto driver = static_cast<InputDriverInterface*>(host); in unregister_device() local
355 driver->unregisterDevice(handle); in unregister_device()
359 auto driver = static_cast<InputDriverInterface*>(host); in input_allocate_report() local
360 return driver->inputAllocateReport(r); in input_allocate_report()
365 auto driver = static_cast<InputDriverInterface*>(host); in input_report_set_usage_int() local
366 driver->inputReportSetUsageInt(r, id, usage, value, arity_index); in input_report_set_usage_int()
371 auto driver = static_cast<InputDriverInterface*>(host); in input_report_set_usage_bool() local
372 driver->inputReportSetUsageBool(r, id, usage, value, arity_index); in input_report_set_usage_bool()
376 auto driver = static_cast<InputDriverInterface*>(host); in report_event() local
377 driver->reportEvent(d, report); in report_event()
382 auto driver = static_cast<InputDriverInterface*>(host); in input_get_device_property_map() local
383 return driver->inputGetDevicePropertyMap(id); in input_get_device_property_map()
388 auto driver = static_cast<InputDriverInterface*>(host); in input_get_device_property() local
389 return driver->inputGetDeviceProperty(map, key); in input_get_device_property()
393 auto driver = static_cast<InputDriverInterface*>(host); in input_get_property_key() local
394 return driver->inputGetPropertyKey(property); in input_get_property_key()
398 auto driver = static_cast<InputDriverInterface*>(host); in input_get_property_value() local
399 return driver->inputGetPropertyValue(property); in input_get_property_value()
403 auto driver = static_cast<InputDriverInterface*>(host); in input_free_device_property() local
404 driver->inputFreeDeviceProperty(property); in input_free_device_property()
408 auto driver = static_cast<InputDriverInterface*>(host); in input_free_device_property_map() local
409 driver->inputFreeDevicePropertyMap(map); in input_free_device_property_map()