Lines Matching full:tx
8 uint8_t pause_data; /* Data pause state of the tx queue */
18 * @brief Initialize a tx queue.
20 * @param ull_tx_q Address of tx queue.
25 * @brief Pause the data path of a tx queue.
27 * @param ull_tx_q Address of tx queue.
32 * @brief Resume the data path of a tx queue
34 * @param ull_tx_q Address of tx queue.
39 * @brief Enqueue a tx node in the data path of a tx queue
41 * @param ull_tx_q Address of tx queue.
42 * @param tx Address of tx node to enqueue.
44 void ull_tx_q_enqueue_data(struct ull_tx_q *queue, struct node_tx *tx);
47 * @brief Enqueue a tx node in the control path of a tx queue
49 * @param ull_tx_q Address of tx queue.
50 * @param tx Address of tx node to enqueue.
52 void ull_tx_q_enqueue_ctrl(struct ull_tx_q *queue, struct node_tx *tx);
55 * @brief Peek head tx node of tx queue.
57 * @param ull_tx_q Address of tx queue.
59 * @return Head tx node of the tx queue.
64 * @brief Dequeue a tx node from a tx queue.
66 * @param ull_tx_q Address of tx queue.
68 * @return Head tx node of the tx queue.