Home
last modified time | relevance | path

Searched refs:lib_desc (Results 1 – 3 of 3) sorted by relevance

/external/libusb/libusb/os/
Dwindows_usbdk.c822 struct libusb_iso_packet_descriptor *lib_desc = &ltransfer->iso_packet_desc[i]; in windows_get_overlapped_result() local
828 lib_desc->status = LIBUSB_TRANSFER_COMPLETED; // == ERROR_SUCCESS in windows_get_overlapped_result()
831 lib_desc->status = LIBUSB_TRANSFER_ERROR; // ERROR_UNKNOWN_EXCEPTION; in windows_get_overlapped_result()
835 lib_desc->actual_length = (unsigned int)transfer_priv->IsochronousResultsArray[i].ActualLength; in windows_get_overlapped_result()
Dlinux_usbfs.c2404 struct libusb_iso_packet_descriptor *lib_desc = in handle_iso_completion() local
2406 lib_desc->status = LIBUSB_TRANSFER_COMPLETED; in handle_iso_completion()
2416 lib_desc->status = LIBUSB_TRANSFER_NO_DEVICE; in handle_iso_completion()
2420 lib_desc->status = LIBUSB_TRANSFER_STALL; in handle_iso_completion()
2424 lib_desc->status = LIBUSB_TRANSFER_OVERFLOW; in handle_iso_completion()
2433 lib_desc->status = LIBUSB_TRANSFER_ERROR; in handle_iso_completion()
2438 lib_desc->status = LIBUSB_TRANSFER_ERROR; in handle_iso_completion()
2441 lib_desc->actual_length = urb_desc->actual_length; in handle_iso_completion()
Ddarwin_usb.c1955 struct libusb_iso_packet_descriptor *lib_desc = &transfer->iso_packet_desc[i]; in darwin_handle_transfer_completion() local
1956 lib_desc->status = darwin_to_libusb (tpriv->isoc_framelist[i].frStatus); in darwin_handle_transfer_completion()
1957 lib_desc->actual_length = tpriv->isoc_framelist[i].frActCount; in darwin_handle_transfer_completion()