Symbol: PIPE_BULK
drivers/media/usb/au0828/au0828-dvb.c
126
if (ptype != PIPE_BULK) {
drivers/media/usb/dvb-usb-v2/usb_urb.c
66
case PIPE_BULK:
drivers/media/usb/dvb-usb/usb-urb.c
55
case PIPE_BULK:
drivers/usb/c67x00/c67x00-hcd.c
352
INIT_LIST_HEAD(&c67x00->list[PIPE_BULK]);
drivers/usb/c67x00/c67x00-hcd.h
63
#if PIPE_BULK != 3
drivers/usb/c67x00/c67x00-sched.c
394
case PIPE_BULK:
drivers/usb/c67x00/c67x00-sched.c
596
case PIPE_BULK:
drivers/usb/c67x00/c67x00-sched.c
821
c67x00_fill_from_list(c67x00, PIPE_BULK, c67x00_add_data_urb);
drivers/usb/c67x00/c67x00-sched.c
944
case PIPE_BULK:
drivers/usb/core/urb.c
191
PIPE_CONTROL, PIPE_ISOCHRONOUS, PIPE_BULK, PIPE_INTERRUPT
drivers/usb/dwc2/hcd.c
4552
case PIPE_BULK:
drivers/usb/dwc2/hcd.c
4682
case PIPE_BULK:
drivers/usb/dwc2/hcd.h
594
return usb_pipetype(urb->pipe) == PIPE_BULK ||
drivers/usb/fotg210/fotg210-hcd.c
2838
} else if (type == PIPE_BULK) {
drivers/usb/gadget/udc/dummy_hcd.c
2455
case PIPE_BULK: \
drivers/usb/host/ehci-q.c
913
} else if (type == PIPE_BULK) {
drivers/usb/host/fhci-hcd.c
401
case PIPE_BULK:
drivers/usb/host/fhci-sched.c
715
case PIPE_BULK:
drivers/usb/host/isp116x-hcd.c
770
case PIPE_BULK:
drivers/usb/host/octeon-hcd.c
3225
case PIPE_BULK:
drivers/usb/host/ohci-dbg.c
16
case PIPE_BULK: temp = "bulk"; break; \
drivers/usb/host/ohci-q.c
1182
case PIPE_BULK:
drivers/usb/host/ohci-q.c
224
case PIPE_BULK:
drivers/usb/host/ohci-q.c
360
case PIPE_BULK:
drivers/usb/host/ohci-q.c
452
if (ed->type != PIPE_BULK) {
drivers/usb/host/ohci-q.c
651
case PIPE_BULK:
drivers/usb/host/ohci-q.c
685
if (urb_priv->ed->type == PIPE_BULK) {
drivers/usb/host/oxu210hp-hcd.c
1863
} else if (type == PIPE_BULK) {
drivers/usb/host/oxu210hp-hcd.c
3219
case PIPE_BULK:
drivers/usb/host/oxu210hp-hcd.c
3341
case PIPE_BULK:
drivers/usb/host/sl811-hcd.c
897
case PIPE_BULK:
drivers/usb/host/uhci-debug.c
121
case PIPE_BULK: ptype = "BLK"; break;
drivers/usb/host/xen-hcd.c
633
case PIPE_BULK:
drivers/usb/host/xen-hcd.c
704
case PIPE_BULK:
drivers/usb/isp1760/isp1760-hcd.c
1893
case PIPE_BULK:
drivers/usb/mon/mon_bin.c
215
PIPE_CONTROL, PIPE_ISOCHRONOUS, PIPE_BULK, PIPE_INTERRUPT
drivers/usb/usbip/usbip_common.c
77
case PIPE_BULK:
drivers/usb/usbip/vudc_rx.c
152
BUILD_BUG_ON_MSG(PIPE_BULK != 3, "PIPE_* doesn't range from 0 to 3");
drivers/usb/usbip/vudc_rx.c
154
urb_p->urb->pipe &= ~(PIPE_BULK << 30);
drivers/usb/usbip/vudc_rx.c
157
urb_p->urb->pipe |= (PIPE_BULK << 30);
include/linux/usb.h
2024
#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
include/linux/usb.h
2042
((PIPE_BULK << 30) | __create_pipe(dev, endpoint))
include/linux/usb.h
2044
((PIPE_BULK << 30) | __create_pipe(dev, endpoint) | USB_DIR_IN)