Lines Matching refs:currentInstance
679 usb_host_device_instance_t *currentInstance; in USB_HostRemoveDeviceInstance() local
695 currentInstance = prevInstance->next; in USB_HostRemoveDeviceInstance()
698 while (currentInstance != NULL) in USB_HostRemoveDeviceInstance()
700 if (currentInstance == deviceHandle) in USB_HostRemoveDeviceInstance()
702 prevInstance->next = currentInstance->next; in USB_HostRemoveDeviceInstance()
705 prevInstance = currentInstance; in USB_HostRemoveDeviceInstance()
706 currentInstance = currentInstance->next; in USB_HostRemoveDeviceInstance()
1036 usb_host_device_instance_t *currentInstance; in USB_HostAttachDevice() local
1048 currentInstance = (usb_host_device_instance_t *)hostInstance->deviceList; in USB_HostAttachDevice()
1049 while (currentInstance != NULL) in USB_HostAttachDevice()
1051 … if ((currentInstance->hubNumber == hubNumber) && (currentInstance->portNumber == portNumber)) in USB_HostAttachDevice()
1061 currentInstance = currentInstance->next; in USB_HostAttachDevice()