Symbol: hid_alloc_report_buf
drivers/hid/hid-bigbenff.c
209
buf = hid_alloc_report_buf(bigben->report, GFP_KERNEL);
drivers/hid/hid-core.c
1919
EXPORT_SYMBOL_GPL(hid_alloc_report_buf);
drivers/hid/hid-core.c
2007
u8 *buf __free(kfree) = hid_alloc_report_buf(report, GFP_KERNEL);
drivers/hid/hid-haptic.c
484
hid_alloc_report_buf(haptic->manual_trigger_report,
drivers/hid/hid-haptic.c
496
hid_alloc_report_buf(haptic->manual_trigger_report,
drivers/hid/hid-input.c
1891
u8 *buf __free(kfree) = hid_alloc_report_buf(report, GFP_KERNEL);
drivers/hid/hid-multitouch.c
1830
buf = hid_alloc_report_buf(report, GFP_KERNEL);
drivers/hid/hid-multitouch.c
521
buf = hid_alloc_report_buf(report, GFP_KERNEL);
drivers/hid/hid-picolcd_debugfs.c
401
raw_data = hid_alloc_report_buf(report, GFP_ATOMIC);
drivers/hid/hid-steam.c
335
buf = hid_alloc_report_buf(r, GFP_KERNEL);
drivers/hid/hid-steam.c
371
buf = hid_alloc_report_buf(r, GFP_KERNEL);
drivers/hid/hid-vivaldi-common.c
52
report_data = buf = hid_alloc_report_buf(report, GFP_KERNEL);
drivers/hid/usbhid/hid-core.c
541
usbhid->out[usbhid->outhead].raw_report = hid_alloc_report_buf(report, GFP_ATOMIC);
drivers/hid/usbhid/hid-core.c
590
usbhid->ctrl[usbhid->ctrlhead].raw_report = hid_alloc_report_buf(report, GFP_ATOMIC);
drivers/hid/wacom_sys.c
327
data = hid_alloc_report_buf(field->report, GFP_KERNEL);
drivers/hid/wacom_sys.c
389
data = hid_alloc_report_buf(field->report, GFP_KERNEL);
drivers/hid/wacom_sys.c
602
rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
include/linux/hid.h
1040
u8 *hid_alloc_report_buf(struct hid_report *report, gfp_t flags);