Lines Matching full:pipe
16 static void usbmon_trace(struct udevice *bus, ulong pipe, in usbmon_trace() argument
22 type = (pipe & USB_PIPE_TYPE_MASK) >> USB_PIPE_TYPE_SHIFT; in usbmon_trace()
24 pipe & USB_DIR_IN ? 'i' : 'o', in usbmon_trace()
26 (pipe & USB_PIPE_DEV_MASK) >> USB_PIPE_DEV_SHIFT, in usbmon_trace()
27 (pipe & USB_PIPE_EP_MASK) >> USB_PIPE_EP_SHIFT); in usbmon_trace()
40 unsigned long pipe, in sandbox_submit_control() argument
50 ret = usb_emul_find(bus, pipe, udev->portnr, &emul); in sandbox_submit_control()
51 usbmon_trace(bus, pipe, setup, emul); in sandbox_submit_control()
55 if (usb_pipedevice(pipe) == ctrl->rootdev) { in sandbox_submit_control()
62 ret = usb_emul_control(emul, udev, pipe, buffer, length, setup); in sandbox_submit_control()
76 unsigned long pipe, void *buffer, int length) in sandbox_submit_bulk() argument
83 ret = usb_emul_find(bus, pipe, udev->portnr, &emul); in sandbox_submit_bulk()
84 usbmon_trace(bus, pipe, NULL, emul); in sandbox_submit_bulk()
87 ret = usb_emul_bulk(emul, udev, pipe, buffer, length); in sandbox_submit_bulk()
101 unsigned long pipe, void *buffer, int length, in sandbox_submit_int() argument
109 ret = usb_emul_find(bus, pipe, udev->portnr, &emul); in sandbox_submit_int()
110 usbmon_trace(bus, pipe, NULL, emul); in sandbox_submit_int()
113 ret = usb_emul_int(emul, udev, pipe, buffer, length, interval); in sandbox_submit_int()