Home
last modified time | relevance | path

Searched refs:outPipe (Results 1 – 8 of 8) sorted by relevance

/hal_nxp-3.5.0/mcux/middleware/mcux-sdk-middleware-usb/host/class/
Dusb_host_printer.c208 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)printerInstance->outPipe)->endpointAddress)) == in USB_HostPrinterOutPipeCallback()
261 if (printerInstance->outPipe != NULL) /* close interrupt out pipe if it is open */ in USB_HostPrinterOpenInterface()
263 status = USB_HostClosePipe(printerInstance->hostHandle, printerInstance->outPipe); in USB_HostPrinterOpenInterface()
271 printerInstance->outPipe = NULL; in USB_HostPrinterOpenInterface()
322 … status = USB_HostOpenPipe(printerInstance->hostHandle, &printerInstance->outPipe, &pipeInit); in USB_HostPrinterOpenInterface()
422 if (printerInstance->outPipe != NULL) in USB_HostPrinterSetInterface()
424 … status = USB_HostCancelTransfer(printerInstance->hostHandle, printerInstance->outPipe, NULL); in USB_HostPrinterSetInterface()
514 if (printerInstance->outPipe != NULL) in USB_HostPrinterDeinit()
517 …USB_HostCancelTransfer(printerInstance->hostHandle, printerInstance->outPipe, NULL); /* cancel pip… in USB_HostPrinterDeinit()
524 …status = USB_HostClosePipe(printerInstance->hostHandle, printerInstance->outPipe); /* close pipe */ in USB_HostPrinterDeinit()
[all …]
Dusb_host_hid.c209 … ((usb_host_pipe_t *)hidInstance->outPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostHidOutPipeCallback()
260 if (hidInstance->outPipe != NULL) /* close interrupt out pipe if it is open */ in USB_HostHidOpenInterface()
262 status = USB_HostClosePipe(hidInstance->hostHandle, hidInstance->outPipe); in USB_HostHidOpenInterface()
270 hidInstance->outPipe = NULL; in USB_HostHidOpenInterface()
321 status = USB_HostOpenPipe(hidInstance->hostHandle, &hidInstance->outPipe, &pipeInit); in USB_HostHidOpenInterface()
418 if (hidInstance->outPipe != NULL) in USB_HostHidSetInterface()
420 status = USB_HostCancelTransfer(hidInstance->hostHandle, hidInstance->outPipe, NULL); in USB_HostHidSetInterface()
509 if (hidInstance->outPipe != NULL) in USB_HostHidDeinit()
511 …status = USB_HostCancelTransfer(hidInstance->hostHandle, hidInstance->outPipe, NULL); /* cancel pi… in USB_HostHidDeinit()
518 … status = USB_HostClosePipe(hidInstance->hostHandle, hidInstance->outPipe); /* close pipe */ in USB_HostHidDeinit()
[all …]
Dusb_host_msd.c285 if (msdInstance->outPipe != NULL) in USB_HostMsdMassResetClearInCallback()
290 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)msdInstance->outPipe)->endpointAddress)); in USB_HostMsdMassResetClearInCallback()
642 … status = USB_HostSend(msdInstance->hostHandle, msdInstance->outPipe, transfer); in USB_HostMsdProcessCommand()
663 … status = USB_HostSend(msdInstance->hostHandle, msdInstance->outPipe, transfer); in USB_HostMsdProcessCommand()
805 if (msdInstance->outPipe != NULL) /* close bulk out pipe if the pipe is open */ in USB_HostMsdOpenInterface()
807 status = USB_HostClosePipe(msdInstance->hostHandle, msdInstance->outPipe); in USB_HostMsdOpenInterface()
814 msdInstance->outPipe = NULL; in USB_HostMsdOpenInterface()
861 status = USB_HostOpenPipe(msdInstance->hostHandle, &msdInstance->outPipe, &pipeInit); in USB_HostMsdOpenInterface()
968 if (msdInstance->outPipe != NULL) in USB_HostMsdSetInterface()
970 status = USB_HostCancelTransfer(msdInstance->hostHandle, msdInstance->outPipe, NULL); in USB_HostMsdSetInterface()
[all …]
Dusb_host_cdc.c149 … ((usb_host_pipe_t *)cdcInstance->outPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostCdcDataOutPipeCallback()
249 if (cdcInstance->outPipe != NULL) in USB_HostCdcOpenDataInterface()
251 status = USB_HostClosePipe(cdcInstance->hostHandle, cdcInstance->outPipe); in USB_HostCdcOpenDataInterface()
259 cdcInstance->outPipe = NULL; in USB_HostCdcOpenDataInterface()
313 status = USB_HostOpenPipe(cdcInstance->hostHandle, &cdcInstance->outPipe, &pipeInit); in USB_HostCdcOpenDataInterface()
641 if (cdcInstance->outPipe != NULL) in USB_HostCdcSetDataInterface()
643 status = USB_HostCancelTransfer(cdcInstance->hostHandle, cdcInstance->outPipe, NULL); in USB_HostCdcSetDataInterface()
761 if (cdcInstance->outPipe != NULL) in USB_HostCdcDeinit()
763 status = USB_HostCancelTransfer(cdcInstance->hostHandle, cdcInstance->outPipe, NULL); in USB_HostCdcDeinit()
770 status = USB_HostClosePipe(cdcInstance->hostHandle, cdcInstance->outPipe); in USB_HostCdcDeinit()
[all …]
Dusb_host_printer.h54 usb_host_pipe_handle outPipe; /*!< Printer bulk out pipe*/ member
Dusb_host_hid.h64 usb_host_pipe_handle outPipe; /*!< HID interrupt out pipe*/ member
Dusb_host_cdc.h219 usb_host_pipe_handle outPipe; /*!< CDC bulk out pipe*/ member
Dusb_host_msd.h136 usb_host_pipe_handle outPipe; /*!< MSD bulk out pipe*/ member