Lines Matching defs:sent
1381 uint16_t send_xon; /**< Is XON frame need be sent */
3841 /** Pending packets to be sent on explicit flush or when full */
3868 * Configure a callback for buffered packets which cannot be sent
3872 * successfully be sent. The callback registered here will be called only
3877 * which cannot be sent, this function should be used to register a suitable
3899 * adjust the default behavior when buffered packets cannot be sent. This
3911 * The previously buffered packets which could not be sent
3925 * adjust the default behavior when buffered packets cannot be sent. This
3938 * The previously buffered packets which could not be sent
3958 * sent.
4126 /** reset interrupt event, sent to VF on PF reset */
4939 * packets sent on a given NIC port queue. The return value is a pointer
6521 * sent.
6550 * - Free the network buffer previously sent with that descriptor, if any.
6560 * actually sent. A return value equal to *nb_pkts* means that all packets
6561 * have been sent, and this is likely to signify that other output packets
6568 * transparently free the memory buffers of packets previously sent.
6591 * sent.
6683 * sent. A return value equal to *nb_pkts* means that all packets are valid and
6684 * ready to be sent, otherwise stops processing on the first invalid packet and
6695 * sent.
6704 * The number of packets correct and ready to be sent. The return value can be
6782 * sent to the NIC, and calls the error callback for any unsent packets. Unless
6790 * sent.
6796 * The number of packets successfully sent to the Ethernet device. The error
6797 * callback is called for any packets which could not be sent.
6803 uint16_t sent;
6809 sent = rte_eth_tx_burst(port_id, queue_id, buffer->pkts, to_send);
6813 /* All packets sent, or to be dealt with by callback below */
6814 if (unlikely(sent != to_send))
6815 buffer->error_callback(&buffer->pkts[sent],
6816 (uint16_t)(to_send - sent),
6819 return sent;
6831 * mempool. The function returns the number of packets actually sent i.e.
6839 * sent.
6843 * Buffer used to collect packets to be sent.
6845 * Pointer to the packet mbuf to be sent.
6849 * causing N packets to be sent, and the error callback to be called for