Home | History | Annotate | Download | only in host

Lines Matching full:host

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