Lines Matching refs:icount
256 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()
1211 cnow = info->icount; /* atomic copy */ in mxser_cflags_changed()
1285 cnow = info->icount; /* note the counters on entry */ in mxser_ioctl()
1304 struct serial_icounter_struct *icount) in mxser_get_icount() argument
1312 cnow = info->icount; in mxser_get_icount()
1315 icount->frame = cnow.frame; in mxser_get_icount()
1316 icount->brk = cnow.brk; in mxser_get_icount()
1317 icount->overrun = cnow.overrun; in mxser_get_icount()
1318 icount->buf_overrun = cnow.buf_overrun; in mxser_get_icount()
1319 icount->parity = cnow.parity; in mxser_get_icount()
1320 icount->rx = cnow.rx; in mxser_get_icount()
1321 icount->tx = cnow.tx; in mxser_get_icount()
1322 icount->cts = cnow.cts; in mxser_get_icount()
1323 icount->dsr = cnow.dsr; in mxser_get_icount()
1324 icount->rng = cnow.rng; in mxser_get_icount()
1325 icount->dcd = cnow.dcd; in mxser_get_icount()
1587 port->icount.brk++; in mxser_receive_chars_old()
1593 port->icount.parity++; in mxser_receive_chars_old()
1596 port->icount.frame++; in mxser_receive_chars_old()
1599 port->icount.overrun++; in mxser_receive_chars_old()
1642 port->icount.tx++; in mxser_transmit_chars()
1665 port->icount.tx += (cnt - port->xmit_cnt); in mxser_transmit_chars()