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