Home
last modified time | relevance | path

Searched refs:epno (Results 1 – 9 of 9) sorted by relevance

/third_party/NuttX/drivers/usbdev/gadget/
Drndis.h81 #define RNDIS_MKEPINTIN(desc) ((desc)->epno[RNDIS_EP_INTIN_IDX])
83 #define RNDIS_MKEPBULKIN(desc) ((desc)->epno[RNDIS_EP_BULKIN_IDX])
85 #define RNDIS_MKEPBULKOUT(desc) ((desc)->epno[RNDIS_EP_BULKOUT_IDX])
Dcdcacm.h118 #define CDCACM_MKEPINTIN(desc) ((desc)->epno[CDCACM_EP_INTIN_IDX])
120 #define CDCACM_MKEPBULKIN(desc) ((desc)->epno[CDCACM_EP_BULKIN_IDX])
122 #define CDCACM_MKEPBULKOUT(desc) ((desc)->epno[CDCACM_EP_BULKOUT_IDX])
Dusbdev.h229 int epno[USBDEV_MAX_EPNUM]; /* Array holding the endpoint configuration for this device */ member
Df_hid.c469 devinfo->epno[0] = ep->eplog; in usbclass_hid_bind()
496 devinfo->epno[1] = ep->eplog; in usbclass_hid_bind()
Df_uac.c681 devinfo->epno[0] = ep->eplog; in usbclass_uac_bind()
698 devinfo->epno[1] = ep->eplog; in usbclass_uac_bind()
Dcomposite.c432 if (devinfo->epno[j] == interface) in composite_classsetup()
Df_uvc.c2286 devinfo->epno[0] = ep->eplog; in usbclass_uvc_bind()
2326 devinfo->epno[1] = ep->eplog; in usbclass_uvc_bind()
/third_party/FreeBSD/sys/dev/usb/controller/
Dxhci.c868 uint8_t epno; in xhci_check_transfer() local
879 epno = XHCI_TRB_3_EP_GET(temp); in xhci_check_transfer()
887 index, epno, remainder, status); in xhci_check_transfer()
894 if ((epno == 0) || (epno >= XHCI_MAX_ENDPOINTS)) { in xhci_check_transfer()
899 pepext = &sc->sc_hw.devs[index].endp[epno]; in xhci_check_transfer()
2306 uint8_t epno; in xhci_configure_endpoint() local
2315 epno = edesc->bEndpointAddress; in xhci_configure_endpoint()
2319 epno |= UE_DIR_IN; in xhci_configure_endpoint()
2321 epno = XHCI_EPNO2EPID(epno); in xhci_configure_endpoint()
2323 if (epno == 0) in xhci_configure_endpoint()
[all …]
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
Df_generic.c478 priv->devinfo->epno[i] = ep->eplog; in generic_eps_alloc()