Lines Matching refs:report_enum

84 	struct hid_report_enum *report_enum = device->report_enum + type;  in hid_register_report()  local
89 if (report_enum->report_id_hash[id]) in hid_register_report()
90 return report_enum->report_id_hash[id]; in hid_register_report()
97 report_enum->numbered = 1; in hid_register_report()
104 report_enum->report_id_hash[id] = report; in hid_register_report()
106 list_add_tail(&report->list, &report_enum->report_list); in hid_register_report()
705 struct hid_report_enum *report_enum = device->report_enum + i; in hid_close_report() local
708 struct hid_report *report = report_enum->report_id_hash[j]; in hid_close_report()
712 memset(report_enum, 0, sizeof(*report_enum)); in hid_close_report()
713 INIT_LIST_HEAD(&report_enum->report_list); in hid_close_report()
1042 &hid->report_enum[type].report_list, in hid_validate_values()
1045 report = hid->report_enum[type].report_id_hash[id]; in hid_validate_values()
1171 rep_enum = &hid->report_enum[HID_INPUT_REPORT]; in hid_apply_multiplier()
1212 rep_enum = &hid->report_enum[HID_FEATURE_REPORT]; in hid_setup_resolution_multiplier()
1817 struct hid_report_enum *report_enum = &hid->report_enum[HID_INPUT_REPORT]; in hid_process_ordering() local
1819 list_for_each_entry(report, &report_enum->report_list, list) in hid_process_ordering()
1926 struct list_head *report_list = &hdev->report_enum[report_type].report_list; in hid_find_field()
1948 static struct hid_report *hid_get_report(struct hid_report_enum *report_enum, in hid_get_report() argument
1955 if (report_enum->numbered) in hid_get_report()
1958 report = report_enum->report_id_hash[n]; in hid_get_report()
2006 struct hid_report_enum *report_enum = hid->report_enum + type; in hid_report_raw_event() local
2014 report = hid_get_report(report_enum, data); in hid_report_raw_event()
2018 if (report_enum->numbered) { in hid_report_raw_event()
2028 if (report_enum->numbered && rsize >= max_buffer_size) in hid_report_raw_event()
2066 struct hid_report_enum *report_enum; in __hid_input_report() local
2086 report_enum = hid->report_enum + type; in __hid_input_report()
2105 report = hid_get_report(report_enum, data); in __hid_input_report()