Home
last modified time | relevance | path

Searched refs:ucom_cons_rx_high (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/dev/usb/serial/
H A Dusb_serial.c125 static unsigned ucom_cons_rx_high = 0; variable
464 ucom_cons_rx_high = 0; in ucom_attach_tty()
1538 temp = (UCOM_CONS_BUFSIZE - 1) - ucom_cons_rx_high + ucom_cons_rx_low; in ucom_put_data()
1543 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_rx_high)) in ucom_put_data()
1544 temp = (UCOM_CONS_BUFSIZE - ucom_cons_rx_high); in ucom_put_data()
1551 usbd_copy_out(pc, offset, ucom_cons_rx_buf + ucom_cons_rx_high, temp); in ucom_put_data()
1555 ucom_cons_rx_high += temp; in ucom_put_data()
1556 ucom_cons_rx_high %= UCOM_CONS_BUFSIZE; in ucom_put_data()
1692 if (ucom_cons_rx_low != ucom_cons_rx_high) { in ucom_cngetc()