Home
last modified time | relevance | path

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

/system/bt/stack/bnep/
Dbnep_utils.cc122 p_bcb->xmit_q = fixed_queue_new(SIZE_MAX); in bnepu_allocate_bcb()
151 while (!fixed_queue_is_empty(p_bcb->xmit_q)) { in bnepu_release_bcb()
152 osi_free(fixed_queue_try_dequeue(p_bcb->xmit_q)); in bnepu_release_bcb()
154 fixed_queue_free(p_bcb->xmit_q, NULL); in bnepu_release_bcb()
155 p_bcb->xmit_q = NULL; in bnepu_release_bcb()
407 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in bnepu_check_send_packet()
413 fixed_queue_enqueue(p_bcb->xmit_q, p_buf); in bnepu_check_send_packet()
Dbnep_api.cc398 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) { in BNEP_WriteBuf()
498 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in BNEP_Write()
682 p_status->xmit_q_depth = fixed_queue_length(p_bcb->xmit_q); in BNEP_GetStatus()
Dbnep_int.h131 fixed_queue_t* xmit_q; member
Dbnep_main.cc406 BT_HDR* p_buf = (BT_HDR*)fixed_queue_try_dequeue(p_bcb->xmit_q); in bnep_congestion_ind()