Lines Matching refs:alt
104 usb_find_common_endpoints(struct usb_host_interface *alt,
111 usb_find_common_endpoints_reverse(struct usb_host_interface *alt,
118 usb_find_bulk_in_endpoint(struct usb_host_interface *alt,
121 return usb_find_common_endpoints(alt, bulk_in, NULL, NULL, NULL);
125 usb_find_bulk_out_endpoint(struct usb_host_interface *alt,
128 return usb_find_common_endpoints(alt, NULL, bulk_out, NULL, NULL);
132 usb_find_int_in_endpoint(struct usb_host_interface *alt,
135 return usb_find_common_endpoints(alt, NULL, NULL, int_in, NULL);
139 usb_find_int_out_endpoint(struct usb_host_interface *alt,
142 return usb_find_common_endpoints(alt, NULL, NULL, NULL, int_out);
146 usb_find_last_bulk_in_endpoint(struct usb_host_interface *alt,
149 return usb_find_common_endpoints_reverse(alt, bulk_in, NULL, NULL, NULL);
153 usb_find_last_bulk_out_endpoint(struct usb_host_interface *alt,
156 return usb_find_common_endpoints_reverse(alt, NULL, bulk_out, NULL, NULL);
160 usb_find_last_int_in_endpoint(struct usb_host_interface *alt,
163 return usb_find_common_endpoints_reverse(alt, NULL, NULL, int_in, NULL);
167 usb_find_last_int_out_endpoint(struct usb_host_interface *alt,
170 return usb_find_common_endpoints_reverse(alt, NULL, NULL, NULL, int_out);
204 * @resetting_device: USB core reset the device, so use alt setting 0 as