Searched refs:epd (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dusb.h537 * @epd: endpoint to be checked
541 static inline int usb_endpoint_dir_in(const struct usb_endpoint_descriptor *epd) argument
543 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN);
548 * @epd: endpoint to be checked
552 static inline int usb_endpoint_dir_out(const struct usb_endpoint_descriptor *epd) argument
554 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT);
559 * @epd: endpoint to be checked
563 static inline int usb_endpoint_xfer_bulk(const struct usb_endpoint_descriptor *epd) argument
565 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
571 * @epd
575 usb_endpoint_xfer_control(const struct usb_endpoint_descriptor *epd) argument
588 usb_endpoint_xfer_int(const struct usb_endpoint_descriptor *epd) argument
601 usb_endpoint_xfer_isoc(const struct usb_endpoint_descriptor *epd) argument
614 usb_endpoint_is_bulk_in(const struct usb_endpoint_descriptor *epd) argument
626 usb_endpoint_is_bulk_out(const struct usb_endpoint_descriptor *epd) argument
638 usb_endpoint_is_int_in(const struct usb_endpoint_descriptor *epd) argument
650 usb_endpoint_is_int_out(const struct usb_endpoint_descriptor *epd) argument
662 usb_endpoint_is_isoc_in(const struct usb_endpoint_descriptor *epd) argument
674 usb_endpoint_is_isoc_out(const struct usb_endpoint_descriptor *epd) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/usb/
H A Dusbmidi.c1382 struct usb_endpoint_descriptor* epd; local
1398 epd = get_endpoint(hostif, i);
1399 if ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_BULK &&
1400 (epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
1403 (epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
1404 endpoint[out_eps].out_ep = epd->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1405 if ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT)
1406 endpoint[out_eps].out_interval = epd->bInterval;
1410 (epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) {
1411 endpoint[in_eps].in_ep = epd
1487 struct usb_endpoint_descriptor* epd; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/usb/class/
H A Dusblp.c1031 struct usb_endpoint_descriptor *epd, *epwrite, *epread; local
1054 epd = &ifd->endpoint[e].desc;
1056 if (usb_endpoint_is_bulk_out(epd))
1058 epwrite = epd;
1060 if (usb_endpoint_is_bulk_in(epd))
1062 epread = epd;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/
H A Dlcp.c2008 struct epdisc epd; local
2010 GETCHAR(epd.class, p);
2011 epd.length = olen - CILEN_CHAR;
2012 if (epd.length > MAX_ENDP_LEN)
2013 epd.length = MAX_ENDP_LEN;
2014 if (epd.length > 0) {
2015 BCOPY(p, epd.value, epd.length);
2016 p += epd.length;
2018 printer(arg, "endpoint [%s]", epdisc_to_str(&epd));
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/
H A Dlcp.c2150 struct epdisc epd; local
2152 GETCHAR(epd.class, p);
2153 epd.length = olen - CILEN_CHAR;
2154 if (epd.length > MAX_ENDP_LEN)
2155 epd.length = MAX_ENDP_LEN;
2156 if (epd.length > 0) {
2157 BCOPY(p, epd.value, epd.length);
2158 p += epd.length;
2160 printer(arg, "endpoint [%s]", epdisc_to_str(&epd));
[all...]

Completed in 121 milliseconds