Lines Matching defs:cnow
1149 struct async_icount cnow;
1154 cnow = info->icount; /* atomic copy */
1157 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1158 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1159 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1160 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1162 *cprev = cnow;
1206 struct async_icount cnow;
1228 cnow = info->icount; /* note the counters on entry */
1232 mxser_cflags_changed(info, arg, &cnow));
1251 struct async_icount cnow;
1255 cnow = info->icount;
1258 icount->frame = cnow.frame;
1259 icount->brk = cnow.brk;
1260 icount->overrun = cnow.overrun;
1261 icount->buf_overrun = cnow.buf_overrun;
1262 icount->parity = cnow.parity;
1263 icount->rx = cnow.rx;
1264 icount->tx = cnow.tx;
1265 icount->cts = cnow.cts;
1266 icount->dsr = cnow.dsr;
1267 icount->rng = cnow.rng;
1268 icount->dcd = cnow.dcd;