Lines Matching refs:currentInstance
677 usb_host_device_instance_t *currentInstance; in USB_HostRemoveDeviceInstance() local
693 currentInstance = prevInstance->next; in USB_HostRemoveDeviceInstance()
696 while (currentInstance != NULL) in USB_HostRemoveDeviceInstance()
698 if (currentInstance == deviceHandle) in USB_HostRemoveDeviceInstance()
700 prevInstance->next = currentInstance->next; in USB_HostRemoveDeviceInstance()
703 prevInstance = currentInstance; in USB_HostRemoveDeviceInstance()
704 currentInstance = currentInstance->next; in USB_HostRemoveDeviceInstance()
1034 usb_host_device_instance_t *currentInstance; in USB_HostAttachDevice() local
1046 currentInstance = (usb_host_device_instance_t *)hostInstance->deviceList; in USB_HostAttachDevice()
1047 while (currentInstance != NULL) in USB_HostAttachDevice()
1049 … if ((currentInstance->hubNumber == hubNumber) && (currentInstance->portNumber == portNumber)) in USB_HostAttachDevice()
1059 currentInstance = currentInstance->next; in USB_HostAttachDevice()