Lines Matching defs:cnow
1538 struct uart_icount cprev, cnow;
1554 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount));
1557 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1558 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1559 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd))) {
1569 cprev = cnow;
1586 struct uart_icount cnow;
1595 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount));
1598 icount->cts = cnow.cts;
1599 icount->dsr = cnow.dsr;
1600 icount->rng = cnow.rng;
1601 icount->dcd = cnow.dcd;
1602 icount->rx = cnow.rx;
1603 icount->tx = cnow.tx;
1604 icount->frame = cnow.frame;
1605 icount->overrun = cnow.overrun;
1606 icount->parity = cnow.parity;
1607 icount->brk = cnow.brk;
1608 icount->buf_overrun = cnow.buf_overrun;