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()
844 int tosend = 0; in vcc_write() local
865 tosend = min(count, (VCC_BUFF_LEN - port->chars_in_buffer)); in vcc_write()
867 if (!tosend) in vcc_write()
871 tosend); in vcc_write()
872 port->chars_in_buffer += tosend; in vcc_write()
873 pkt->tag.stype = tosend; in vcc_write()
884 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_write()
886 (VIO_TAG_SIZE + tosend), rv); in vcc_write()
888 total_sent += tosend; in vcc_write()
889 count -= tosend; in vcc_write()