Lines Matching defs:status
1249 * status of the device if error or short xfer.
1371 * Make sure that the endpoint and status device for the endpoint
1468 /* open the status device node for the ep first RDWR */
2257 * gets status of device
2259 * Returns: ugen dev status values
2264 int status, error;
2268 error = (int)read(fd, &status, (size_t)sizeof (status));
2269 if (error != (int)sizeof (status)) {
2270 usb_error_str(errno, "Could not read device status: %d",
2275 switch (status) {
2293 "Device status=%d\n", status);
2297 return (status);
2459 * gets status of endpoint
2461 * Returns: ugen's last cmd status
2466 int status, error;
2470 error = (int)read(fd, &status, sizeof (status));
2471 if (error == (int)sizeof (status)) {
2472 switch (status) {
2550 status);
2555 return (status);