Lines Matching refs:tosend
395 int tosend = 0; in vcc_tx_timer() local
404 tosend = min(VCC_BUFF_LEN, port->chars_in_buffer); in vcc_tx_timer()
405 if (!tosend) in vcc_tx_timer()
410 pkt->tag.stype = tosend; in vcc_tx_timer()
413 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_tx_timer()
843 int tosend = 0; in vcc_write() local
864 tosend = min(count, (VCC_BUFF_LEN - port->chars_in_buffer)); in vcc_write()
866 if (!tosend) in vcc_write()
870 tosend); in vcc_write()
871 port->chars_in_buffer += tosend; in vcc_write()
872 pkt->tag.stype = tosend; in vcc_write()
883 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_write()
885 (VIO_TAG_SIZE + tosend), rv); in vcc_write()
887 total_sent += tosend; in vcc_write()
888 count -= tosend; in vcc_write()