Lines Matching refs:status
199 ssize_t status;
271 * precise FIFO status when recovering from cancellation.
280 if (req->status)
281 epdata->status = req->status;
283 epdata->status = req->actual;
360 if (epdata->status == -ECONNRESET)
361 epdata->status = -EINTR;
367 epdata->status = -ENODEV;
370 return epdata->status;
400 int status;
402 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
403 return status;
409 status = usb_ep_fifo_status (data->ep);
415 status = usb_ep_clear_halt (data->ep);
418 status = -ENOTTY;
421 status = -ENODEV;
424 return status;
504 req->actual ? req->actual : (long)req->status);
507 if (unlikely(0 != req->status))
509 ep->name, req->status, req->actual);
711 * status = write (fd, descriptors, sizeof descriptors)
874 dev->setup_out_error = (req->status != 0);
1131 /* data and/or status stage for control request */
1369 * requests handled lower down (device/endpoint status and features);
1370 * then ep0_{read,write} will report the wrong status. controller
1518 /* proceed with data transfer and status phases? */
1531 req->status = 0;
1759 * status = write (fd, descriptors, sizeof descriptors)
2120 int status;
2122 status = register_filesystem (&gadgetfs_type);
2123 if (status == 0)
2126 return status;