Lines Matching refs:pipe
508 #define PIPETYPE(pipe) ({ char *__s; \
509 if (usb_pipecontrol(pipe)) __s = "ctrl"; \
510 else if (usb_pipeint(pipe)) __s = "int"; \
511 else if (usb_pipebulk(pipe)) __s = "bulk"; \
514 #define PIPEDIR(pipe) ({ usb_pipein(pipe) ? "in" : "out"; })
521 unsigned int pipe;
527 pipe = urb->pipe;
529 usb_pipedevice(pipe), usb_pipeendpoint(pipe),
530 PIPEDIR(pipe), PIPETYPE(pipe),