Lines Matching refs:icount
255 struct async_icount icount; /* kernel counters for 4 input interrupts */ member
692 port->icount.rng++; in mxser_check_modem_status()
694 port->icount.dsr++; in mxser_check_modem_status()
696 port->icount.dcd++; in mxser_check_modem_status()
698 port->icount.cts++; in mxser_check_modem_status()
1216 cnow = info->icount; /* atomic copy */ in mxser_cflags_changed()
1290 cnow = info->icount; /* note the counters on entry */ in mxser_ioctl()
1309 struct serial_icounter_struct *icount) in mxser_get_icount() argument
1317 cnow = info->icount; in mxser_get_icount()
1320 icount->frame = cnow.frame; in mxser_get_icount()
1321 icount->brk = cnow.brk; in mxser_get_icount()
1322 icount->overrun = cnow.overrun; in mxser_get_icount()
1323 icount->buf_overrun = cnow.buf_overrun; in mxser_get_icount()
1324 icount->parity = cnow.parity; in mxser_get_icount()
1325 icount->rx = cnow.rx; in mxser_get_icount()
1326 icount->tx = cnow.tx; in mxser_get_icount()
1327 icount->cts = cnow.cts; in mxser_get_icount()
1328 icount->dsr = cnow.dsr; in mxser_get_icount()
1329 icount->rng = cnow.rng; in mxser_get_icount()
1330 icount->dcd = cnow.dcd; in mxser_get_icount()
1597 port->icount.brk++; in mxser_receive_chars_old()
1603 port->icount.parity++; in mxser_receive_chars_old()
1606 port->icount.frame++; in mxser_receive_chars_old()
1609 port->icount.overrun++; in mxser_receive_chars_old()
1652 port->icount.tx++; in mxser_transmit_chars()
1675 port->icount.tx += (cnt - port->xmit_cnt); in mxser_transmit_chars()