Lines Matching refs:outtail
203 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
204 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
345 report = usbhid->out[usbhid->outtail].report;
346 raw_report = usbhid->out[usbhid->outtail].raw_report;
354 usbhid->out[usbhid->outtail].raw_report = NULL;
454 usbhid->outtail = usbhid->outhead;
456 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
458 if (usbhid->outhead != usbhid->outtail &&
536 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {