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

  /src/sys/dev/usb/
uchcom.c 228 struct uchcom_endpoints endpoints; local in function:uchcom_attach
252 if (find_endpoints(sc, &endpoints))
255 sc->sc_intr_endpoint = endpoints.ep_intr;
256 sc->sc_intr_size = endpoints.ep_intr_size;
260 ucaa.ucaa_bulkin = endpoints.ep_bulkin;
261 ucaa.ucaa_bulkout = endpoints.ep_bulkout;
347 find_endpoints(struct uchcom_softc *sc, struct uchcom_endpoints *endpoints)
399 endpoints->ep_intr = intr;
400 endpoints->ep_intr_size = isize;
401 endpoints->ep_bulkin = bin
    [all...]
vhci.c 212 } endpoints[VHCI_NADDRS]; member in struct:__anon32e6285d0208
286 reqlist = &port->endpoints[addr].host_to_usb;
305 reslist = &port->endpoints[addr].usb_to_host;
320 datlist = &port->endpoints[addr].usb_to_host;
322 datlist = &port->endpoints[addr].host_to_usb;
365 pktlist = &port->endpoints[pkt->addr].usb_to_host;
367 pktlist = &port->endpoints[pkt->addr].host_to_usb;
840 pktlist = &port->endpoints[addr].host_to_usb;
851 pktlist = &port->endpoints[addr].usb_to_host;
1048 pktlist = &port->endpoints[vfd->addr].host_to_usb
    [all...]
usb_subr.c 537 struct usbd_endpoint *endpoints; local in function:usbd_fill_iface_data
551 endpoints = kmem_alloc(nendpt * sizeof(struct usbd_endpoint),
554 endpoints = NULL;
590 endpoints[endpt].ue_edesc = ed;
593 /* Control and bulk endpoints have max packet limits. */
613 endpoints[endpt].ue_refcnt = 0;
614 endpoints[endpt].ue_toggle = 0;
621 /* Success! Free the old endpoints and commit the changes. */
630 ifc->ui_endpoints = endpoints;
635 if (endpoints)
    [all...]

Completed in 13 milliseconds