Home
last modified time | relevance | path

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

/third_party/FreeBSD/sys/dev/usb/serial/
Dusb_serial.c99 static unsigned int ucom_cons_tx_high = 0; variable
328 ucom_cons_tx_high = 0; in ucom_attach_tty()
622 ucom_cons_tx_high = 0; in ucom_close()
910 temp = ucom_cons_tx_high - ucom_cons_tx_low; in ucom_get_data()
1035 temp = (UCOM_CONS_BUFSIZE - 1) - ucom_cons_tx_high + ucom_cons_tx_low; in tx_data_copy_in()
1042 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_tx_high)){ in tx_data_copy_in()
1043 temp = (UCOM_CONS_BUFSIZE - ucom_cons_tx_high); in tx_data_copy_in()
1045 ret = usbd_copy_from_user(ucom_cons_tx_buf + ucom_cons_tx_high, temp, tx_data, temp); in tx_data_copy_in()
1059 ret = usbd_copy_from_user(ucom_cons_tx_buf + ucom_cons_tx_high, in tx_data_copy_in()
1060 UCOM_CONS_BUFSIZE - ucom_cons_tx_high, tx_data, len); in tx_data_copy_in()
[all …]