Home | History | Annotate | Download | only in host

Lines Matching refs:driver

285     result.appendFormat(INDENT2 "HAL Input Driver (%s)\n", mName.string());
297 auto driver = static_cast<InputDriverInterface*>(host);
298 return driver->createDeviceIdentifier(name, product_id, vendor_id, bus, unique_id);
302 auto driver = static_cast<InputDriverInterface*>(host);
303 return driver->createDeviceDefinition();
307 auto driver = static_cast<InputDriverInterface*>(host);
308 return driver->createInputReportDefinition();
312 auto driver = static_cast<InputDriverInterface*>(host);
313 return driver->createOutputReportDefinition();
317 auto driver = static_cast<InputDriverInterface*>(host);
318 driver->freeReportDefinition(report_def);
323 auto driver = static_cast<InputDriverInterface*>(host);
324 driver->inputDeviceDefinitionAddReport(d, r);
329 auto driver = static_cast<InputDriverInterface*>(host);
330 driver->inputReportDefinitionAddCollection(report, id, arity);
336 auto driver = static_cast<InputDriverInterface*>(host);
337 driver->inputReportDefinitionDeclareUsageInt(report, id, usage, min, max, resolution);
343 auto driver = static_cast<InputDriverInterface*>(host);
344 driver->inputReportDefinitionDeclareUsagesBool(report, id, usage, usage_count);
349 auto driver = static_cast<InputDriverInterface*>(host);
350 return driver->registerDevice(id, d);
354 auto driver = static_cast<InputDriverInterface*>(host);
355 driver->unregisterDevice(handle);
359 auto driver = static_cast<InputDriverInterface*>(host);
360 return driver->inputAllocateReport(r);
365 auto driver = static_cast<InputDriverInterface*>(host);
366 driver->inputReportSetUsageInt(r, id, usage, value, arity_index);
371 auto driver = static_cast<InputDriverInterface*>(host);
372 driver->inputReportSetUsageBool(r, id, usage, value, arity_index);
376 auto driver = static_cast<InputDriverInterface*>(host);
377 driver->reportEvent(d, report);
382 auto driver = static_cast<InputDriverInterface*>(host);
383 return driver->inputGetDevicePropertyMap(id);
388 auto driver = static_cast<InputDriverInterface*>(host);
389 return driver->inputGetDeviceProperty(map, key);
393 auto driver = static_cast<InputDriverInterface*>(host);
394 return driver->inputGetPropertyKey(property);
398 auto driver = static_cast<InputDriverInterface*>(host);
399 return driver->inputGetPropertyValue(property);
403 auto driver = static_cast<InputDriverInterface*>(host);
404 driver->inputFreeDeviceProperty(property);
408 auto driver = static_cast<InputDriverInterface*>(host);
409 driver->inputFreeDevicePropertyMap(map);