Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/
Dgap_conn.c454 fixed_queue_enqueue(p_ccb->tx_queue, p_buf, FIXED_QUEUE_MAX_TIMEOUT); in GAP_ConnBTWrite()
464 while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL) { in GAP_ConnBTWrite()
535 fixed_queue_enqueue(p_ccb->tx_queue, p_buf, FIXED_QUEUE_MAX_TIMEOUT); in GAP_ConnWriteData()
546 while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL) in GAP_ConnWriteData()
1036 while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL) { in gap_congestion_ind()
1123 p_ccb->tx_queue = fixed_queue_new(QUEUE_SIZE_MAX); in gap_allocate_ccb()
1162 while (!fixed_queue_is_empty(p_ccb->tx_queue)) { in gap_release_ccb()
1163 osi_free(fixed_queue_dequeue(p_ccb->tx_queue, 0)); in gap_release_ccb()
1165 fixed_queue_free(p_ccb->tx_queue, NULL); in gap_release_ccb()
1166 p_ccb->tx_queue = NULL; in gap_release_ccb()
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/include/
Dgap_int.h74 fixed_queue_t *tx_queue; /* Queue of buffers waiting to be sent */ member