Lines Matching defs:timeout
1304 /* 10ms rx timeout */
1356 /* set timeout !!! */
1603 static void cy_wait_until_sent(struct tty_struct *tty, int timeout)
1620 * interval should also be less than the timeout.
1625 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1629 if (timeout < 0)
1630 timeout = 0;
1631 if (timeout)
1632 char_time = min(char_time, timeout);
1638 * takes longer than info->timeout, this is probably due to a
1639 * UART bug of some kind. So, we clamp the timeout parameter at
1640 * 2*info->timeout.
1642 if (!timeout || timeout > 2 * info->timeout)
1643 timeout = 2 * info->timeout;
1650 if (timeout && time_after(jiffies, orig_jiffies +
1651 timeout))
1714 cy_wait_until_sent(port->tty, info->timeout);
2020 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
2024 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2027 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2031 info->timeout = 0;
2116 /* 10ms rx timeout */
2162 info->timeout = (info->xmit_fifo_size * HZ * 30 / 269) +
2166 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2169 info->timeout = (info->xmit_fifo_size * HZ * 15 /
2173 info->timeout = 0;