Lines Matching refs:out_count
127 volatile unsigned int out_count; member
355 port->out_count = 0; in initialize_port()
667 if (port->out_count < OUT_BUFFER_SIZE) in sync_serial_poll()
704 port->out_count = 0; in sync_serial_ioctl_unlocked()
715 port->out_count = 0; in sync_serial_ioctl_unlocked()
993 port->port_nbr, count, port->out_count, OUT_BUFFER_SIZE)); in sync_serial_write()
1007 if (count > OUT_BUFFER_SIZE - port->out_count) in sync_serial_write()
1008 count = OUT_BUFFER_SIZE - port->out_count; in sync_serial_write()
1011 free_outp = outp + port->out_count; in sync_serial_write()
1039 port->out_count += count; in sync_serial_write()
1177 port->out_count--; in send_word()
1186 port->out_count -= 2; in send_word()
1193 port->out_count -= 2; in send_word()
1200 port->out_count -= 3; in send_word()
1207 port->out_count -= 4; in send_word()
1296 port->out_count -= sentl; in tr_interrupt()
1300 if (port->out_count) { in tr_interrupt()
1302 if (c > port->out_count) in tr_interrupt()
1303 c = port->out_count; in tr_interrupt()
1445 if (port->out_count > 0) { in manual_interrupt()