Lines Matching refs:report

160 void InputDriver::inputReportDefinitionAddCollection(input_report_definition_t* report,  in inputReportDefinitionAddCollection()  argument
162 report->collections[id] = {.arity = arity}; in inputReportDefinitionAddCollection()
165 void InputDriver::inputReportDefinitionDeclareUsageInt(input_report_definition_t* report, in inputReportDefinitionDeclareUsageInt() argument
168 if (report->collections.find(id) != report->collections.end()) { in inputReportDefinitionDeclareUsageInt()
169 report->collections[id].intUsages.push_back({ in inputReportDefinitionDeclareUsageInt()
174 void InputDriver::inputReportDefinitionDeclareUsagesBool(input_report_definition_t* report, in inputReportDefinitionDeclareUsagesBool() argument
176 if (report->collections.find(id) != report->collections.end()) { in inputReportDefinitionDeclareUsagesBool()
178 report->collections[id].boolUsages.push_back(usage[i]); in inputReportDefinitionDeclareUsagesBool()
207 void InputDriver::reportEvent(input_device_handle_t* d, input_report_t* report) { in reportEvent() argument
208 ALOGD("report_event %p for handle %p", report, d); in reportEvent()
328 input_report_definition_t* report, input_collection_id_t id, int32_t arity) { in input_report_definition_add_collection() argument
330 driver->inputReportDefinitionAddCollection(report, id, arity); in input_report_definition_add_collection()
334 input_report_definition_t* report, input_collection_id_t id, in input_report_definition_declare_usage_int() argument
337 driver->inputReportDefinitionDeclareUsageInt(report, id, usage, min, max, resolution); in input_report_definition_declare_usage_int()
341 input_report_definition_t* report, input_collection_id_t id, in input_report_definition_declare_usages_bool() argument
344 driver->inputReportDefinitionDeclareUsagesBool(report, id, usage, usage_count); in input_report_definition_declare_usages_bool()
375 void report_event(input_host_t* host, input_device_handle_t* d, input_report_t* report) { in report_event() argument
377 driver->reportEvent(d, report); in report_event()