Lines Matching refs:host
294 ::input_device_identifier_t* create_device_identifier(input_host_t* host, in create_device_identifier() argument
297 auto driver = static_cast<InputDriverInterface*>(host); in create_device_identifier()
301 input_device_definition_t* create_device_definition(input_host_t* host) { in create_device_definition() argument
302 auto driver = static_cast<InputDriverInterface*>(host); in create_device_definition()
306 input_report_definition_t* create_input_report_definition(input_host_t* host) { in create_input_report_definition() argument
307 auto driver = static_cast<InputDriverInterface*>(host); in create_input_report_definition()
311 input_report_definition_t* create_output_report_definition(input_host_t* host) { in create_output_report_definition() argument
312 auto driver = static_cast<InputDriverInterface*>(host); in create_output_report_definition()
316 void free_report_definition(input_host_t* host, input_report_definition_t* report_def) { in free_report_definition() argument
317 auto driver = static_cast<InputDriverInterface*>(host); in free_report_definition()
321 void input_device_definition_add_report(input_host_t* host, in input_device_definition_add_report() argument
323 auto driver = static_cast<InputDriverInterface*>(host); in input_device_definition_add_report()
327 void input_report_definition_add_collection(input_host_t* host, in input_report_definition_add_collection() argument
329 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_add_collection()
333 void input_report_definition_declare_usage_int(input_host_t* host, in input_report_definition_declare_usage_int() argument
336 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_declare_usage_int()
340 void input_report_definition_declare_usages_bool(input_host_t* host, in input_report_definition_declare_usages_bool() argument
343 auto driver = static_cast<InputDriverInterface*>(host); in input_report_definition_declare_usages_bool()
347 input_device_handle_t* register_device(input_host_t* host, in register_device() argument
349 auto driver = static_cast<InputDriverInterface*>(host); in register_device()
353 void unregister_device(input_host_t* host, input_device_handle_t* handle) { in unregister_device() argument
354 auto driver = static_cast<InputDriverInterface*>(host); in unregister_device()
358 input_report_t* input_allocate_report(input_host_t* host, input_report_definition_t* r) { in input_allocate_report() argument
359 auto driver = static_cast<InputDriverInterface*>(host); in input_allocate_report()
363 void input_report_set_usage_int(input_host_t* host, input_report_t* r, in input_report_set_usage_int() argument
365 auto driver = static_cast<InputDriverInterface*>(host); in input_report_set_usage_int()
369 void input_report_set_usage_bool(input_host_t* host, input_report_t* r, in input_report_set_usage_bool() argument
371 auto driver = static_cast<InputDriverInterface*>(host); in input_report_set_usage_bool()
375 void report_event(input_host_t* host, input_device_handle_t* d, input_report_t* report) { in report_event() argument
376 auto driver = static_cast<InputDriverInterface*>(host); in report_event()
380 input_property_map_t* input_get_device_property_map(input_host_t* host, in input_get_device_property_map() argument
382 auto driver = static_cast<InputDriverInterface*>(host); in input_get_device_property_map()
386 input_property_t* input_get_device_property(input_host_t* host, input_property_map_t* map, in input_get_device_property() argument
388 auto driver = static_cast<InputDriverInterface*>(host); in input_get_device_property()
392 const char* input_get_property_key(input_host_t* host, input_property_t* property) { in input_get_property_key() argument
393 auto driver = static_cast<InputDriverInterface*>(host); 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
398 auto driver = static_cast<InputDriverInterface*>(host); 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
403 auto driver = static_cast<InputDriverInterface*>(host); in input_free_device_property()
407 void input_free_device_property_map(input_host_t* host, input_property_map_t* map) { in input_free_device_property_map() argument
408 auto driver = static_cast<InputDriverInterface*>(host); in input_free_device_property_map()