Lines Matching refs:cnow
1559 struct uart_icount cprev, cnow; in hso_wait_modem_status() local
1575 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount)); in hso_wait_modem_status()
1578 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || in hso_wait_modem_status()
1579 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || in hso_wait_modem_status()
1580 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd))) { in hso_wait_modem_status()
1590 cprev = cnow; in hso_wait_modem_status()
1607 struct uart_icount cnow; in hso_get_count() local
1616 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount)); in hso_get_count()
1619 icount->cts = cnow.cts; in hso_get_count()
1620 icount->dsr = cnow.dsr; in hso_get_count()
1621 icount->rng = cnow.rng; in hso_get_count()
1622 icount->dcd = cnow.dcd; in hso_get_count()
1623 icount->rx = cnow.rx; in hso_get_count()
1624 icount->tx = cnow.tx; in hso_get_count()
1625 icount->frame = cnow.frame; in hso_get_count()
1626 icount->overrun = cnow.overrun; in hso_get_count()
1627 icount->parity = cnow.parity; in hso_get_count()
1628 icount->brk = cnow.brk; in hso_get_count()
1629 icount->buf_overrun = cnow.buf_overrun; in hso_get_count()