Lines Matching full:tx
29 /* move all paused data to the tail of tx list, only if not empty and no longer paused */ in ull_tx_q_resume_data()
35 void ull_tx_q_enqueue_data(struct ull_tx_q *queue, struct node_tx *tx) in ull_tx_q_enqueue_data() argument
43 /* enqueue data pdu into tx list */ in ull_tx_q_enqueue_data()
47 sys_slist_append(list, (sys_snode_t *)tx); in ull_tx_q_enqueue_data()
50 void ull_tx_q_enqueue_ctrl(struct ull_tx_q *queue, struct node_tx *tx) in ull_tx_q_enqueue_ctrl() argument
52 /* enqueue ctrl pdu into tx list */ in ull_tx_q_enqueue_ctrl()
53 sys_slist_append(&queue->tx_list, (sys_snode_t *)tx); in ull_tx_q_enqueue_ctrl()
58 struct node_tx *tx; in ull_tx_q_peek() local
60 tx = (struct node_tx *)sys_slist_peek_head(&queue->tx_list); in ull_tx_q_peek()
62 return tx; in ull_tx_q_peek()
67 struct node_tx *tx; in ull_tx_q_dequeue() local
69 tx = (struct node_tx *)sys_slist_get(&queue->tx_list); in ull_tx_q_dequeue()
71 return tx; in ull_tx_q_dequeue()