Lines Matching refs:InputDriver
114 InputDriver::InputDriver(const char* name) : mName(String8(name)) { in InputDriver() function in android::InputDriver
121 void InputDriver::init() { in init()
125 input_device_identifier_t* InputDriver::createDeviceIdentifier( in createDeviceIdentifier()
139 input_device_definition_t* InputDriver::createDeviceDefinition() { in createDeviceDefinition()
143 input_report_definition_t* InputDriver::createInputReportDefinition() { in createInputReportDefinition()
147 input_report_definition_t* InputDriver::createOutputReportDefinition() { in createOutputReportDefinition()
151 void InputDriver::freeReportDefinition(input_report_definition_t* reportDef) { in freeReportDefinition()
155 void InputDriver::inputDeviceDefinitionAddReport(input_device_definition_t* d, in inputDeviceDefinitionAddReport()
160 void InputDriver::inputReportDefinitionAddCollection(input_report_definition_t* report, in inputReportDefinitionAddCollection()
165 void InputDriver::inputReportDefinitionDeclareUsageInt(input_report_definition_t* report, in inputReportDefinitionDeclareUsageInt()
174 void InputDriver::inputReportDefinitionDeclareUsagesBool(input_report_definition_t* report, in inputReportDefinitionDeclareUsagesBool()
183 input_device_handle_t* InputDriver::registerDevice(input_device_identifier_t* id, in registerDevice()
190 void InputDriver::unregisterDevice(input_device_handle_t* handle) { in unregisterDevice()
194 input_report_t* InputDriver::inputAllocateReport(input_report_definition_t* r) { in inputAllocateReport()
199 void InputDriver::inputReportSetUsageInt(input_report_t* r, input_collection_id_t id, in inputReportSetUsageInt()
203 void InputDriver::inputReportSetUsageBool(input_report_t* r, input_collection_id_t id, in inputReportSetUsageBool()
207 void InputDriver::reportEvent(input_device_handle_t* d, input_report_t* report) { in reportEvent()
211 input_property_map_t* InputDriver::inputGetDevicePropertyMap(input_device_identifier_t* id) { in inputGetDevicePropertyMap()
240 input_property_t* InputDriver::inputGetDeviceProperty(input_property_map_t* map, in inputGetDeviceProperty()
257 const char* InputDriver::inputGetPropertyKey(input_property_t* property) { in inputGetPropertyKey()
264 const char* InputDriver::inputGetPropertyValue(input_property_t* property) { in inputGetPropertyValue()
271 void InputDriver::inputFreeDeviceProperty(input_property_t* property) { in inputFreeDeviceProperty()
277 void InputDriver::inputFreeDevicePropertyMap(input_property_map_t* map) { in inputFreeDevicePropertyMap()
284 void InputDriver::dump(String8& result) { in dump()