Lines Matching refs:endpoint
113 struct usb_host_endpoint *endpoint; member
658 static __inline__ U32 __create_pipe(struct usb_device *dev, U32 endpoint) in __create_pipe() argument
660 return (dev->devnum << 8) | (endpoint << 15); in __create_pipe()
694 #define usb_sndctrlpipe(dev,endpoint) (((U32)PIPE_CONTROL << 30) | __create_pipe(dev,endpoint)) argument
695 #define usb_rcvctrlpipe(dev,endpoint) (((U32)PIPE_CONTROL << 30) | __create_pipe(dev,endpoint) | U… argument
696 #define usb_sndisocpipe(dev,endpoint) (((U32)PIPE_ISOCHRONOUS << 30) | __create_pipe(dev,endpoint)) argument
697 #define usb_rcvisocpipe(dev,endpoint) (((U32)PIPE_ISOCHRONOUS << 30) | __create_pipe(dev,endpoint)… argument
698 #define usb_sndbulkpipe(dev,endpoint) (((U32)PIPE_BULK << 30) | __create_pipe(dev,endpoint)) argument
699 #define usb_rcvbulkpipe(dev,endpoint) (((U32)PIPE_BULK << 30) | __create_pipe(dev,endpoint) | USB_… argument
700 #define usb_sndintpipe(dev,endpoint) (((U32)PIPE_INTERRUPT << 30) | __create_pipe(dev,endpoint)) argument
701 #define usb_rcvintpipe(dev,endpoint) (((U32)PIPE_INTERRUPT << 30) | __create_pipe(dev,endpoint) | … argument