Lines Matching refs:txring

303 	channel_ring_t rxring, txring;  in sktc_channel_worker_echo()  local
360 txring = os_channel_tx_ring(sktc_channel, ringid); in sktc_channel_worker_echo()
361 assert(txring); in sktc_channel_worker_echo()
395 txavail = os_channel_available_slot_count(txring); in sktc_channel_worker_echo()
413 txavail = os_channel_available_slot_count(txring); in sktc_channel_worker_echo()
426 txslot = os_channel_get_next_slot(txring, NULL, &txprop); in sktc_channel_worker_echo()
436 os_channel_set_slot_properties(txring, txslot, &txprop); in sktc_channel_worker_echo()
441 txslot = os_channel_get_next_slot(txring, txslot, &txprop); in sktc_channel_worker_echo()
445 error = os_channel_advance_slot(txring, txprev); in sktc_channel_worker_echo()
550 channel_ring_t txring; in sktc_channel_worker_source() local
587 txring = os_channel_tx_ring(sktc_channel, ringid); in sktc_channel_worker_source()
588 assert(txring); in sktc_channel_worker_source()
593 txavail = os_channel_available_slot_count(txring); in sktc_channel_worker_source()
611 txavail = os_channel_available_slot_count(txring); in sktc_channel_worker_source()
620 sktc_chew_random(sktc_channel, txring, CHANNEL_SYNC_TX, true, txavail); in sktc_channel_worker_source()
851 send_bytes(channel_ring_t txring, uint32_t count) in send_bytes() argument
855 assert(txring); in send_bytes()
858 channel_slot_t slot = os_channel_get_next_slot(txring, NULL, &prop); in send_bytes()
862 assert(prop.sp_len == txring->chrd_ring->ring_def_buf_size); in send_bytes()
866 os_channel_set_slot_properties(txring, slot, &prop); in send_bytes()
868 error = os_channel_advance_slot(txring, slot); in send_bytes()