Lines Matching defs:cnow
1115 struct async_icount cnow;
1119 cnow = info->icount;
1121 icount->cts = cnow.cts;
1122 icount->dsr = cnow.dsr;
1123 icount->rng = cnow.rng;
1124 icount->dcd = cnow.dcd;
1125 icount->rx = cnow.rx;
1126 icount->tx = cnow.tx;
1127 icount->frame = cnow.frame;
1128 icount->overrun = cnow.overrun;
1129 icount->parity = cnow.parity;
1130 icount->brk = cnow.brk;
1131 icount->buf_overrun = cnow.buf_overrun;
1140 struct async_icount cprev, cnow; /* kernel counter temps */
1174 cnow = info->icount; /* atomic copy */
1176 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1177 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
1181 if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1182 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1183 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1184 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
1194 cprev = cnow;