Lines Matching refs:cnow
1543 struct uart_icount cprev, cnow; in hso_wait_modem_status() local
1559 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount)); in hso_wait_modem_status()
1562 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || in hso_wait_modem_status()
1563 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || in hso_wait_modem_status()
1564 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd))) { in hso_wait_modem_status()
1574 cprev = cnow; in hso_wait_modem_status()
1591 struct uart_icount cnow; in hso_get_count() local
1600 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount)); in hso_get_count()
1603 icount->cts = cnow.cts; in hso_get_count()
1604 icount->dsr = cnow.dsr; in hso_get_count()
1605 icount->rng = cnow.rng; in hso_get_count()
1606 icount->dcd = cnow.dcd; in hso_get_count()
1607 icount->rx = cnow.rx; in hso_get_count()
1608 icount->tx = cnow.tx; in hso_get_count()
1609 icount->frame = cnow.frame; in hso_get_count()
1610 icount->overrun = cnow.overrun; in hso_get_count()
1611 icount->parity = cnow.parity; in hso_get_count()
1612 icount->brk = cnow.brk; in hso_get_count()
1613 icount->buf_overrun = cnow.buf_overrun; in hso_get_count()