Home
last modified time | relevance | path

Searched refs:txprop (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.81.4/tests/skywalk/
H A Dskt_utunloop.c278 slot_prop_t rxprop, txprop; in skt_utunloop_xfer_slots() local
283 txslot = os_channel_get_next_slot(txring, txprev, &txprop); in skt_utunloop_xfer_slots()
286 assert(txprop.sp_len >= rxprop.sp_len); in skt_utunloop_xfer_slots()
287 memcpy((void *)txprop.sp_buf_ptr, in skt_utunloop_xfer_slots()
289 txprop.sp_len = rxprop.sp_len; in skt_utunloop_xfer_slots()
290 os_channel_set_slot_properties(txring, txslot, &txprop); in skt_utunloop_xfer_slots()
293 bytecount += txprop.sp_len; in skt_utunloop_xfer_slots()
H A Dskywalk_test_common.c364 slot_prop_t rxprop, txprop; in sktc_channel_worker_echo() local
426 txslot = os_channel_get_next_slot(txring, NULL, &txprop); in sktc_channel_worker_echo()
430 assert(txprop.sp_len == slotsize); in sktc_channel_worker_echo()
431 assert(txprop.sp_len >= rxprop.sp_len); in sktc_channel_worker_echo()
432 memcpy((void *)txprop.sp_buf_ptr, (void *)rxprop.sp_buf_ptr, rxprop.sp_len); in sktc_channel_worker_echo()
433 txprop.sp_len = rxprop.sp_len; 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()