HomeSort by: relevance | last modified time | path
    Searched defs:uha (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/arch/x86/x86/
cpu_ucode_intel.c 185 void *uha; local in function:cpu_ucode_intel_apply
202 uha = kmem_alloc(newbufsize, KM_SLEEP);
204 (struct intel1_ucode_header *)roundup2((uintptr_t)uha, 16);
239 kmem_free(uha, newbufsize);
  /src/sys/dev/usb/
uintuos.c 94 struct uhidev_attach_arg *uha = aux; local in function:uintuos_match
96 if ((uha->uiaa->uiaa_vendor == USB_VENDOR_WACOM) &&
97 (uha->uiaa->uiaa_product == USB_PRODUCT_WACOM_CTH490K0) &&
98 (uha->reportid == 16))
101 if ((uha->uiaa->uiaa_vendor == USB_VENDOR_WACOM) &&
102 (uha->uiaa->uiaa_product == USB_PRODUCT_WACOM_CTL6100WL) &&
103 (uha->reportid == 16))
113 struct uhidev_attach_arg *uha = aux; local in function:uintuos_attach
121 sc->sc_hdev.sc_parent = uha->parent;
122 sc->sc_hdev.sc_report_id = uha->reportid
    [all...]
ums.c 156 struct uhidev_attach_arg *uha = aux; local in function:ums_match
164 if (uha->uiaa->uiaa_vendor == USB_VENDOR_GRIFFIN &&
165 uha->uiaa->uiaa_product == USB_PRODUCT_GRIFFIN_POWERMATE)
168 uhidev_get_report_desc(uha->parent, &desc, &size);
169 if (!hid_is_collection(desc, size, uha->reportid,
171 !hid_is_collection(desc, size, uha->reportid,
173 !hid_is_collection(desc, size, uha->reportid,
184 struct uhidev_attach_arg *uha = aux; local in function:ums_attach
193 sc->sc_hdev = uha->parent;
194 sc->sc_udev = uha->uiaa->uiaa_device
    [all...]
uthum.c 122 struct uhidev_attach_arg *uha = aux; local in function:uthum_match
124 return uthum_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product)
132 struct uhidev_attach_arg *uha = aux; local in function:uthum_attach
133 struct usbd_device *dev = uha->uiaa->uiaa_device;
138 sc->sc_hdev = uha->parent;
145 uhidev_get_report_desc(uha->parent, &desc, &size);
146 repid = uha->reportid;
uhid.c 162 struct uhidev_attach_arg *uha = aux; local in function:uhid_match
165 DPRINTF(("uhid_match: report=%d\n", uha->reportid));
177 struct uhidev_attach_arg *uha = aux; local in function:uhid_attach
182 sc->sc_hdev = uha->parent;
183 sc->sc_udev = uha->uiaa->uiaa_device;
184 sc->sc_report_id = uha->reportid;
188 uhidev_get_report_desc(uha->parent, &desc, &size);
189 repid = uha->reportid;
193 sc->sc_raw = hid_is_collection(desc, size, uha->reportid,
uts.c 122 struct uhidev_attach_arg *uha = aux; local in function:uts_match
126 uhidev_get_report_desc(uha->parent, &desc, &size);
127 if (!hid_is_collection(desc, size, uha->reportid,
129 !hid_is_collection(desc, size, uha->reportid,
140 struct uhidev_attach_arg *uha = aux; local in function:uts_attach
151 sc->sc_hdev = uha->parent;
153 uhidev_get_report_desc(uha->parent, &desc, &size);
160 uha->reportid, hid_input, &sc->sc_loc_x, &flags)) {
179 uha->reportid, hid_input, &sc->sc_loc_y, &flags)) {
198 uha->reportid, hid_input, &sc->sc_loc_btn, 0))
    [all...]
uhidev.c 179 struct uhidev_attach_arg uha; local in function:uhidev_attach
379 uha.uiaa = uiaa;
417 uha.parent = scd;
418 uha.reportid = repid;
421 dev = config_found(self, &uha, uhidevprint,
459 struct uhidev_attach_arg *uha = aux; local in function:uhidevprint
463 if (uha->reportid != 0)
464 aprint_normal(" reportid %d", uha->reportid);
ucycom.c 212 struct uhidev_attach_arg *uha = aux; local in function:ucycom_match
214 return ucycom_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product)
222 struct uhidev_attach_arg *uha = aux; local in function:ucycom_attach
227 sc->sc_hdev = uha->parent;
228 sc->sc_udev = uha->uiaa->uiaa_device;
231 uhidev_get_report_desc(uha->parent, &desc, &size);
232 repid = uha->reportid;
umcpmio.c 2084 struct uhidev_attach_arg *uha = aux; local in function:umcpmio_match
2086 return umcpmio_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product)
2101 struct uhidev_attach_arg *uha = aux; local in function:umcpmio_attach
2107 sc->sc_hdev = uha->parent;
2108 sc->sc_udev = uha->uiaa->uiaa_device;
ukbd.c 411 struct uhidev_attach_arg *uha = aux; local in function:ukbd_match
415 uhidev_get_report_desc(uha->parent, &desc, &size);
416 if (!hid_is_collection(desc, size, uha->reportid,
427 struct uhidev_attach_arg *uha = aux; local in function:ukbd_attach
434 sc->sc_hdev = uha->parent;
435 sc->sc_udev = uha->uiaa->uiaa_device;
436 sc->sc_iface = uha->uiaa->uiaa_iface;
437 sc->sc_report_id = uha->reportid;
462 ukt = ukbd_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product)
    [all...]
uatp.c 681 find_uatp_descriptor(const struct uhidev_attach_arg *uha)
686 if ((uha->uiaa->uiaa_vendor == uatp_descriptors[i].vendor) &&
687 (uha->uiaa->uiaa_product == uatp_descriptors[i].product))
879 const struct uhidev_attach_arg *uha = aux; local in function:uatp_match
885 (unsigned int)uha->uiaa->uiaa_vendor,
886 (unsigned int)uha->uiaa->uiaa_product);
889 (unsigned int)uha->uiaa->uiaa_class,
890 (unsigned int)uha->uiaa->uiaa_subclass,
891 (unsigned int)uha->uiaa->uiaa_proto);
893 uhidev_get_report_desc(uha->parent, &report_descriptor, &report_size)
930 const struct uhidev_attach_arg *uha = aux; local in function:uatp_attach
    [all...]
  /src/sys/arch/macppc/dev/
pbms.c 300 struct uhidev_attach_arg *uha = aux; local in function:pbms_match
309 if (uha->uiaa->uiaa_proto == UIPROTO_MOUSE &&
310 ((udd = usbd_get_device_descriptor(uha->uiaa->uiaa_device))
330 struct uhidev_attach_arg *uha = aux; local in function:pbms_attach
339 sc->sc_hdev.sc_parent = uha->parent;
340 sc->sc_hdev.sc_report_id = uha->reportid;
346 udev = uha->uiaa->uiaa_udevice;

Completed in 19 milliseconds