Lines Matching refs:pipeQueue
256 static usb_status_t USB_HostOhciGetPipe(usb_host_ohci_pipe_struct_t **pipeQueue, usb_host_ohci_pipe… in USB_HostOhciGetPipe() argument
265 if (NULL != (*pipeQueue)) in USB_HostOhciGetPipe()
267 *pipe = *pipeQueue; in USB_HostOhciGetPipe()
269 *pipeQueue = (usb_host_ohci_pipe_struct_t *)temp; in USB_HostOhciGetPipe()
277 static usb_status_t USB_HostOhciRemovePipe(usb_host_ohci_pipe_struct_t **pipeQueue, usb_host_ohci_p… in USB_HostOhciRemovePipe() argument
279 usb_host_ohci_pipe_struct_t *p = *pipeQueue; in USB_HostOhciRemovePipe()
301 *pipeQueue = (usb_host_ohci_pipe_struct_t *)temp; in USB_HostOhciRemovePipe()
314 static usb_status_t USB_HostOhciInsertPipe(usb_host_ohci_pipe_struct_t **pipeQueue, usb_host_ohci_p… in USB_HostOhciInsertPipe() argument
316 usb_host_ohci_pipe_struct_t *p = *pipeQueue; in USB_HostOhciInsertPipe()
337 temp = (*pipeQueue); in USB_HostOhciInsertPipe()
339 *pipeQueue = pipe; in USB_HostOhciInsertPipe()