Searched refs:epd (Results 1 – 2 of 2) sorted by relevance
425 static inline int usb_endpoint_num(const struct usb_endpoint_descriptor *epd) in usb_endpoint_num() argument427 return epd->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; in usb_endpoint_num()437 static inline int usb_endpoint_type(const struct usb_endpoint_descriptor *epd) in usb_endpoint_type() argument439 return epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; in usb_endpoint_type()448 static inline int usb_endpoint_dir_in(const struct usb_endpoint_descriptor *epd) in usb_endpoint_dir_in() argument450 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN); in usb_endpoint_dir_in()460 const struct usb_endpoint_descriptor *epd) in usb_endpoint_dir_out() argument462 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT); in usb_endpoint_dir_out()472 const struct usb_endpoint_descriptor *epd) in usb_endpoint_xfer_bulk() argument474 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == in usb_endpoint_xfer_bulk()[all …]
2130 struct epdisc epd; local2132 GETCHAR(epd.class, p);2133 epd.length = olen - CILEN_CHAR;2134 if (epd.length > MAX_ENDP_LEN)2135 epd.length = MAX_ENDP_LEN;2136 if (epd.length > 0) {2137 BCOPY(p, epd.value, epd.length);2138 p += epd.length;2140 printer(arg, "endpoint [%s]", epdisc_to_str(&epd));