Lines Matching refs:tosend
396 int tosend = 0; in vcc_tx_timer() local
405 tosend = min(VCC_BUFF_LEN, port->chars_in_buffer); in vcc_tx_timer()
406 if (!tosend) in vcc_tx_timer()
411 pkt->tag.stype = tosend; in vcc_tx_timer()
414 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_tx_timer()
845 int tosend = 0; in vcc_write() local
866 tosend = min(count, (VCC_BUFF_LEN - port->chars_in_buffer)); in vcc_write()
868 if (!tosend) in vcc_write()
872 tosend); in vcc_write()
873 port->chars_in_buffer += tosend; in vcc_write()
874 pkt->tag.stype = tosend; in vcc_write()
885 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_write()
887 (VIO_TAG_SIZE + tosend), rv); in vcc_write()
889 total_sent += tosend; in vcc_write()
890 count -= tosend; in vcc_write()