Lines Matching refs:pipe
1469 unsigned int pipe; /* (in) pipe information */ member
1511 unsigned int pipe, in usb_fill_control_urb() argument
1519 urb->pipe = pipe; in usb_fill_control_urb()
1542 unsigned int pipe, in usb_fill_bulk_urb() argument
1549 urb->pipe = pipe; in usb_fill_bulk_urb()
1583 unsigned int pipe, in usb_fill_int_urb() argument
1591 urb->pipe = pipe; in usb_fill_int_urb()
1685 extern int usb_control_msg(struct usb_device *dev, unsigned int pipe,
1688 extern int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
1690 extern int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
1703 extern int usb_clear_halt(struct usb_device *dev, int pipe);
1752 int pipe; member
1764 unsigned pipe,
1801 #define usb_pipein(pipe) ((pipe) & USB_DIR_IN) argument
1802 #define usb_pipeout(pipe) (!usb_pipein(pipe)) argument
1804 #define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f) argument
1805 #define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf) argument
1807 #define usb_pipetype(pipe) (((pipe) >> 30) & 3) argument
1808 #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS) argument
1809 #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT) argument
1810 #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL) argument
1811 #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK) argument
1838 usb_pipe_endpoint(struct usb_device *dev, unsigned int pipe) in usb_pipe_endpoint() argument
1841 eps = usb_pipein(pipe) ? dev->ep_in : dev->ep_out; in usb_pipe_endpoint()
1842 return eps[usb_pipeendpoint(pipe)]; in usb_pipe_endpoint()
1848 usb_maxpacket(struct usb_device *udev, int pipe, int is_out) in usb_maxpacket() argument
1851 unsigned epnum = usb_pipeendpoint(pipe); in usb_maxpacket()
1854 WARN_ON(usb_pipein(pipe)); in usb_maxpacket()
1857 WARN_ON(usb_pipeout(pipe)); in usb_maxpacket()