Lines Matching refs:controllerInterface
51 uint8_t controllerId, const usb_device_controller_interface_struct_t **controllerInterface);
192 uint8_t controllerId, const usb_device_controller_interface_struct_t **controllerInterface) in USB_DeviceGetControllerInterface() argument
201 …*controllerInterface = (const usb_device_controller_interface_struct_t *)&s_UsbDeviceKhciInterface; in USB_DeviceGetControllerInterface()
209 …*controllerInterface = (const usb_device_controller_interface_struct_t *)&s_UsbDeviceEhciInterface; in USB_DeviceGetControllerInterface()
219 …*controllerInterface = (const usb_device_controller_interface_struct_t *)&s_UsbDeviceLpc3511IpInte… in USB_DeviceGetControllerInterface()
227 …*controllerInterface = (const usb_device_controller_interface_struct_t *)&s_UsbDeviceDwc3Interface; in USB_DeviceGetControllerInterface()
268 if (NULL != deviceHandle->controllerInterface) in USB_DeviceTransfer()
286 …status = deviceHandle->controllerInterface->deviceSend(deviceHandle->controllerHandle, endpointAdd… in USB_DeviceTransfer()
293 …status = deviceHandle->controllerInterface->deviceRecv(deviceHandle->controllerHandle, endpointAdd… in USB_DeviceTransfer()
335 if (NULL != deviceHandle->controllerInterface) in USB_DeviceControl()
339 …status = deviceHandle->controllerInterface->deviceControl(deviceHandle->controllerHandle, type, pa… in USB_DeviceControl()
775 error = USB_DeviceGetControllerInterface(controllerId, &deviceHandle->controllerInterface); in USB_DeviceInit()
788 if (NULL == deviceHandle->controllerInterface) in USB_DeviceInit()
800 if (((usb_device_controller_init_t)NULL == deviceHandle->controllerInterface->deviceInit) || in USB_DeviceInit()
801 ((usb_device_controller_deinit_t)NULL == deviceHandle->controllerInterface->deviceDeinit) || in USB_DeviceInit()
802 ((usb_device_controller_send_t)NULL == deviceHandle->controllerInterface->deviceSend) || in USB_DeviceInit()
803 ((usb_device_controller_recv_t)NULL == deviceHandle->controllerInterface->deviceRecv) || in USB_DeviceInit()
804 ((usb_device_controller_cancel_t)NULL == deviceHandle->controllerInterface->deviceCancel) || in USB_DeviceInit()
805 ((usb_device_controller_control_t)NULL == deviceHandle->controllerInterface->deviceControl)) in USB_DeviceInit()
840 …error = deviceHandle->controllerInterface->deviceInit(controllerId, deviceHandle, &deviceHandle->c… in USB_DeviceInit()
912 if (NULL != deviceHandle->controllerInterface) in USB_DeviceDeinit()
916 …if (kStatus_USB_Success != deviceHandle->controllerInterface->deviceDeinit(deviceHandle->controlle… in USB_DeviceDeinit()
921 (void)deviceHandle->controllerInterface->deviceDeinit(deviceHandle->controllerHandle); in USB_DeviceDeinit()
923 deviceHandle->controllerInterface = (usb_device_controller_interface_struct_t *)NULL; in USB_DeviceDeinit()
1040 if (NULL != deviceHandle->controllerInterface) in USB_DeviceCancel()
1043 …status = deviceHandle->controllerInterface->deviceCancel(deviceHandle->controllerHandle, endpointA… in USB_DeviceCancel()