Lines Matching refs:icount
73 struct async_icount icount;
182 struct async_icount *icount;
185 icount = &info->icount;
199 icount->rx++;
219 icount->brk++;
221 icount->parity++;
223 icount->frame++;
225 icount->overrun++;
272 info->icount.tx++;
288 info->icount.tx++;
310 struct async_icount *icount;
317 icount = &info->icount;
320 icount->dsr++;
322 icount->dcd++;
325 icount->cts++;
1079 struct serial_icounter_struct *icount)
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;
1135 cprev = info->icount;
1141 cnow = info->icount; /* atomic copy */
1395 seq_printf(m, " tx:%d rx:%d", state->icount.tx, state->icount.rx);
1397 if (state->icount.frame)
1398 seq_printf(m, " fe:%d", state->icount.frame);
1400 if (state->icount.parity)
1401 seq_printf(m, " pe:%d", state->icount.parity);
1403 if (state->icount.brk)
1404 seq_printf(m, " brk:%d", state->icount.brk);
1406 if (state->icount.overrun)
1407 seq_printf(m, " oe:%d", state->icount.overrun);