Lines Matching defs:icount
2567 * @icount: output parameter
2569 * Gets a copy of the @tty's icount statistics.
2574 struct serial_icounter_struct *icount)
2576 memset(icount, 0, sizeof(*icount));
2579 return tty->ops->get_icount(tty, icount);
2587 struct serial_icounter_struct icount;
2590 retval = tty_get_icount(tty, &icount);
2594 if (copy_to_user(arg, &icount, sizeof(icount)))