Home
last modified time | relevance | path

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

/system/bt/stack/bnep/
Dbnep_utils.cc121 p_bcb->xmit_q = fixed_queue_new(SIZE_MAX); in bnepu_allocate_bcb()
150 while (!fixed_queue_is_empty(p_bcb->xmit_q)) { in bnepu_release_bcb()
151 osi_free(fixed_queue_try_dequeue(p_bcb->xmit_q)); in bnepu_release_bcb()
153 fixed_queue_free(p_bcb->xmit_q, NULL); in bnepu_release_bcb()
154 p_bcb->xmit_q = NULL; in bnepu_release_bcb()
406 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in bnepu_check_send_packet()
412 fixed_queue_enqueue(p_bcb->xmit_q, p_buf); in bnepu_check_send_packet()
Dbnep_api.cc395 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in BNEP_WriteBuf()
495 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in BNEP_Write()
Dbnep_int.h110 fixed_queue_t* xmit_q; member
Dbnep_main.cc296 BT_HDR* p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_bcb->xmit_q); in bnep_congestion_ind()