Home
last modified time | relevance | path

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

/system/bt/stack/gap/
Dgap_conn.cc62 fixed_queue_t* rx_queue; /* Queue of buffers waiting to be read */ member
381 if (fixed_queue_is_empty(p_ccb->rx_queue)) return (GAP_NO_DATA_AVAIL); in GAP_ConnReadData()
387 static_cast<BT_HDR*>(fixed_queue_try_peek_first(p_ccb->rx_queue)); in GAP_ConnReadData()
403 osi_free(fixed_queue_try_dequeue(p_ccb->rx_queue)); in GAP_ConnReadData()
470 p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_ccb->rx_queue); in GAP_ConnBTRead()
1000 fixed_queue_enqueue(p_ccb->rx_queue, p_msg); in gap_data_ind()
1106 p_ccb->rx_queue = fixed_queue_new(SIZE_MAX); in gap_allocate_ccb()
1132 while (!fixed_queue_is_empty(p_ccb->rx_queue)) in gap_release_ccb()
1133 osi_free(fixed_queue_try_dequeue(p_ccb->rx_queue)); in gap_release_ccb()
1134 fixed_queue_free(p_ccb->rx_queue, NULL); in gap_release_ccb()
[all …]