Lines Matching defs:cnow
1082 struct async_icount cnow;
1086 cnow = info->icount;
1088 icount->cts = cnow.cts;
1089 icount->dsr = cnow.dsr;
1090 icount->rng = cnow.rng;
1091 icount->dcd = cnow.dcd;
1092 icount->rx = cnow.rx;
1093 icount->tx = cnow.tx;
1094 icount->frame = cnow.frame;
1095 icount->overrun = cnow.overrun;
1096 icount->parity = cnow.parity;
1097 icount->brk = cnow.brk;
1098 icount->buf_overrun = cnow.buf_overrun;
1107 struct async_icount cprev, cnow; /* kernel counter temps */
1141 cnow = info->icount; /* atomic copy */
1143 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1144 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
1148 if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1149 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1150 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1151 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
1161 cprev = cnow;