Searched refs:cnow (Results 1 – 1 of 1) sorted by relevance
1677 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local1680 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) in ntty_cflags_changed()1681 || ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) in ntty_cflags_changed()1682 || ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) in ntty_cflags_changed()1683 || ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()1685 *cprev = cnow; in ntty_cflags_changed()1694 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local1696 icount->cts = cnow.cts; in ntty_tiocgicount()1697 icount->dsr = cnow.dsr; in ntty_tiocgicount()1698 icount->rng = cnow.rng; in ntty_tiocgicount()[all …]