Lines Matching refs:fs_ep
940 struct usb_fs_endpoint fs_ep;
965 ep_index, &fs_ep, sizeof(fs_ep));
971 if (fs_ep.nFrames > xfer->max_frame_count) {
975 if (fs_ep.nFrames == 0) {
979 error = copyin(fs_ep.ppBuffer, &uaddr, sizeof(void *));
989 error = copyin(fs_ep.pLength,
1032 xfer->nframes = fs_ep.nFrames;
1033 xfer->timeout = fs_ep.timeout;
1037 if (fs_ep.flags & USB_FS_FLAG_SINGLE_SHORT_OK)
1042 if (fs_ep.flags & USB_FS_FLAG_MULTI_SHORT_OK)
1047 if (fs_ep.flags & USB_FS_FLAG_FORCE_SHORT)
1052 if (fs_ep.flags & USB_FS_FLAG_CLEAR_STALL)
1058 error = copyin(fs_ep.pLength + n,
1073 error = copyin(fs_ep.ppBuffer + n, &uaddr, sizeof(void *));
1109 struct usb_fs_endpoint fs_ep;
1112 error = copyin(fs_ep_uptr, &fs_ep, sizeof(fs_ep));
1116 fs_ep.status = USB_ERR_CANCELLED;
1117 fs_ep.aFrames = 0;
1118 fs_ep.isoc_time_complete = 0;
1121 error = copyout(&fs_ep.aFrames, &fs_ep_uptr->aFrames,
1122 sizeof(fs_ep.aFrames));
1127 error = copyout(&fs_ep.isoc_time_complete,
1129 sizeof(fs_ep.isoc_time_complete));
1134 error = copyout(&fs_ep.status, &fs_ep_uptr->status,
1135 sizeof(fs_ep.status));
1145 struct usb_fs_endpoint fs_ep;
1177 error = copyin(fs_ep_uptr, &fs_ep, sizeof(fs_ep));
1181 fs_ep.status = xfer->error;
1182 fs_ep.aFrames = xfer->aframes;
1183 fs_ep.isoc_time_complete = xfer->isoc_time_complete;
1217 error = copyin(fs_ep.pLength + n,
1226 fs_ep.status = USB_ERR_INVAL;
1235 fs_ep.status = USB_ERR_INVAL;
1242 error = copyin(fs_ep.ppBuffer + n, &uaddr, sizeof(void *));
1269 fs_ep.pLength + n, sizeof(length));
1277 error = copyout(&fs_ep.aFrames, &fs_ep_uptr->aFrames,
1278 sizeof(fs_ep.aFrames));
1283 error = copyout(&fs_ep.isoc_time_complete,
1285 sizeof(fs_ep.isoc_time_complete));
1290 error = copyout(&fs_ep.status, &fs_ep_uptr->status,
1291 sizeof(fs_ep.status));