Lines Matching refs:tosend
387 int tosend = 0; in vcc_tx_timer() local
396 tosend = min(VCC_BUFF_LEN, port->chars_in_buffer); in vcc_tx_timer()
397 if (!tosend) in vcc_tx_timer()
402 pkt->tag.stype = tosend; in vcc_tx_timer()
405 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_tx_timer()
813 int tosend = 0; in vcc_write() local
829 tosend = min(count, (VCC_BUFF_LEN - port->chars_in_buffer)); in vcc_write()
831 if (!tosend) in vcc_write()
835 tosend); in vcc_write()
836 port->chars_in_buffer += tosend; in vcc_write()
837 pkt->tag.stype = tosend; in vcc_write()
848 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend)); in vcc_write()
850 (VIO_TAG_SIZE + tosend), rv); in vcc_write()
852 total_sent += tosend; in vcc_write()
853 count -= tosend; in vcc_write()