Symbol: hid_get_data
lib/libusbhid/usbhid.h
99
int32_t hid_get_data(const void *p, const hid_item_t *h);
sys/dev/hid/hid.h
93
int32_t hid_get_data(const uint8_t *buf, int, struct hid_location *);
sys/dev/hid/hidkbd.c
366
if (!hid_get_data(ibuf, ilen, &kbd->sc_fn))
sys/dev/hid/hidkbd.c
378
if (!hid_get_data(ibuf, ilen, &kbd->sc_fn))
sys/dev/hid/hidkbd.c
400
if (!hid_get_data(ibuf, ilen, &kbd->sc_fn))
sys/dev/hid/hidkbd.c
435
ud->var[i] = (u_int8_t)hid_get_data(data, len,
sys/dev/hid/hidms.c
562
dx = hid_get_data(data, len, &ms->sc_loc_x);
sys/dev/hid/hidms.c
563
dy = -hid_get_data(data, len, &ms->sc_loc_y);
sys/dev/hid/hidms.c
564
dz = hid_get_data(data, len, &ms->sc_loc_z);
sys/dev/hid/hidms.c
565
dw = hid_get_data(data, len, &ms->sc_loc_w);
sys/dev/hid/hidms.c
591
if (hid_get_data(data, len, &ms->sc_loc_btn[i]))
sys/dev/usb/upd.c
430
hdata = hid_get_data(buf, len, &sensor->hitem.loc);
sys/dev/usb/uwacom.c
198
x = hid_get_data(data, len, &ms->sc_loc_x);
sys/dev/usb/uwacom.c
199
y = hid_get_data(data, len, &ms->sc_loc_y);
sys/dev/usb/uwacom.c
207
if (hid_get_data(data, len, &ms->sc_loc_btn[i]))
sys/dev/usb/uwacom.c
211
pressure = hid_get_data(data, len, &sc->sc_loc_tip_press);
sys/dev/usb/uwacom.c
237
x = hid_get_data(data, len, &ms->sc_loc_x);
sys/dev/usb/uwacom.c
238
y = hid_get_data(data, len, &ms->sc_loc_y);
sys/dev/usb/uwacom.c
239
pressure = hid_get_data(data, len, &ms->sc_loc_z);
sys/dev/usb/uwacom.c
240
distance = hid_get_data(data, len, &ms->sc_loc_w);
sys/dev/usb/uwacom.c
267
if (hid_get_data(data, len, &ms->sc_loc_btn[i]))
sys/dev/usb/uwacom.c
271
if (hid_get_data(data, len, &ms->sc_loc_btn[i]))
usr.bin/usbhidaction/usbhidaction.c
190
val = hid_get_data(buf, &cmd->item);
usr.bin/usbhidctl/usbhid.c
446
printf("%d\n", hid_get_data(buf, item));
usr.bin/usbhidctl/usbhid.c
466
val = hid_get_data(buf, item);