Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/stack/bnep/
Dbnep_utils.cc125 p_bcb->xmit_q = fixed_queue_new(SIZE_MAX); in bnepu_allocate_bcb()
154 while (!fixed_queue_is_empty(p_bcb->xmit_q)) { in bnepu_release_bcb()
155 osi_free(fixed_queue_try_dequeue(p_bcb->xmit_q)); in bnepu_release_bcb()
157 fixed_queue_free(p_bcb->xmit_q, NULL); in bnepu_release_bcb()
158 p_bcb->xmit_q = NULL; in bnepu_release_bcb()
409 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in bnepu_check_send_packet()
415 fixed_queue_enqueue(p_bcb->xmit_q, p_buf); in bnepu_check_send_packet()
Dbnep_api.cc404 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in BNEP_WriteBuf()
503 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in BNEP_Write()
Dbnep_int.h112 fixed_queue_t* xmit_q; member
Dbnep_main.cc303 BT_HDR* p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_bcb->xmit_q); in bnep_congestion_ind()