Home
last modified time | relevance | path

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

/system/bt/stack/gap/
Dgap_conn.c354 if (fixed_queue_is_empty(p_ccb->rx_queue)) in GAP_ConnReadData()
361 BT_HDR *p_buf = fixed_queue_try_peek_first(p_ccb->rx_queue); in GAP_ConnReadData()
380 osi_free(fixed_queue_try_dequeue(p_ccb->rx_queue)); in GAP_ConnReadData()
453 p_buf = (BT_HDR *)fixed_queue_try_dequeue(p_ccb->rx_queue); in GAP_ConnBTRead()
1038 fixed_queue_enqueue(p_ccb->rx_queue, p_msg); in gap_data_ind()
1176 p_ccb->rx_queue = fixed_queue_new(SIZE_MAX); in gap_allocate_ccb()
1208 while (!fixed_queue_is_empty(p_ccb->rx_queue)) in gap_release_ccb()
1209 osi_free(fixed_queue_try_dequeue(p_ccb->rx_queue)); in gap_release_ccb()
1210 fixed_queue_free(p_ccb->rx_queue, NULL); in gap_release_ccb()
1211 p_ccb->rx_queue = NULL; in gap_release_ccb()
Dgap_int.h79 fixed_queue_t *rx_queue; /* Queue of buffers waiting to be read */ member