Lines Matching full:pipe
161 * | pipe | 8
180 * pipe - uint32_t, bit field with multiple information:
276 * USB pipe in usbif_request
293 * - pipe type: bits 30-31
312 #define usbif_pipeportnum(pipe) ((pipe) & USBIF_PIPE_PORT_MASK) argument
313 #define usbif_setportnum_pipe(pipe, portnum) ((pipe) | (portnum)) argument
315 #define usbif_pipeunlink(pipe) ((pipe) & USBIF_PIPE_UNLINK) argument
316 #define usbif_pipesubmit(pipe) (!usbif_pipeunlink(pipe)) argument
317 #define usbif_setunlink_pipe(pipe) ((pipe) | USBIF_PIPE_UNLINK) argument
319 #define usbif_pipein(pipe) ((pipe) & USBIF_PIPE_DIR) argument
320 #define usbif_pipeout(pipe) (!usbif_pipein(pipe)) argument
322 #define usbif_pipedevice(pipe) \ argument
323 (((pipe) >> USBIF_PIPE_DEV_SHIFT) & USBIF_PIPE_DEV_MASK)
325 #define usbif_pipeendpoint(pipe) \ argument
326 (((pipe) >> USBIF_PIPE_EP_SHIFT) & USBIF_PIPE_EP_MASK)
328 #define usbif_pipetype(pipe) \ argument
329 (((pipe) >> USBIF_PIPE_TYPE_SHIFT) & USBIF_PIPE_TYPE_MASK)
330 #define usbif_pipeisoc(pipe) (usbif_pipetype(pipe) == USBIF_PIPE_TYPE_ISOC) argument
331 #define usbif_pipeint(pipe) (usbif_pipetype(pipe) == USBIF_PIPE_TYPE_INT) argument
332 #define usbif_pipectrl(pipe) (usbif_pipetype(pipe) == USBIF_PIPE_TYPE_CTRL) argument
333 #define usbif_pipebulk(pipe) (usbif_pipetype(pipe) == USBIF_PIPE_TYPE_BULK) argument
353 uint32_t pipe; member