• Home
  • Raw
  • Download

Lines Matching refs:pipe

1656 	unsigned int pipe;		/* (in) pipe information */  member
1715 unsigned int pipe, in usb_fill_control_urb() argument
1723 urb->pipe = pipe; in usb_fill_control_urb()
1750 unsigned int pipe, in usb_fill_bulk_urb() argument
1757 urb->pipe = pipe; in usb_fill_bulk_urb()
1790 unsigned int pipe, in usb_fill_int_urb() argument
1798 urb->pipe = pipe; in usb_fill_int_urb()
1867 int usb_pipe_type_check(struct usb_device *dev, unsigned int pipe);
1879 extern int usb_control_msg(struct usb_device *dev, unsigned int pipe,
1882 extern int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
1884 extern int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
1920 extern int usb_clear_halt(struct usb_device *dev, int pipe);
1969 int pipe; member
1981 unsigned pipe,
2018 #define usb_pipein(pipe) ((pipe) & USB_DIR_IN) argument
2019 #define usb_pipeout(pipe) (!usb_pipein(pipe)) argument
2021 #define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f) argument
2022 #define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf) argument
2024 #define usb_pipetype(pipe) (((pipe) >> 30) & 3) argument
2025 #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS) argument
2026 #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT) argument
2027 #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL) argument
2028 #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK) argument
2055 usb_pipe_endpoint(struct usb_device *dev, unsigned int pipe) in usb_pipe_endpoint() argument
2058 eps = usb_pipein(pipe) ? dev->ep_in : dev->ep_out; in usb_pipe_endpoint()
2059 return eps[usb_pipeendpoint(pipe)]; in usb_pipe_endpoint()
2062 static inline u16 usb_maxpacket(struct usb_device *udev, int pipe) in usb_maxpacket() argument
2064 struct usb_host_endpoint *ep = usb_pipe_endpoint(udev, pipe); in usb_maxpacket()