Home
last modified time | relevance | path

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

/system/bt/stack/bnep/
Dbnep_utils.c129 p_bcb->xmit_q = fixed_queue_new(SIZE_MAX); in bnepu_allocate_bcb()
160 while (!fixed_queue_is_empty(p_bcb->xmit_q)) in bnepu_release_bcb()
162 osi_free(fixed_queue_try_dequeue(p_bcb->xmit_q)); in bnepu_release_bcb()
164 fixed_queue_free(p_bcb->xmit_q, NULL); in bnepu_release_bcb()
165 p_bcb->xmit_q = NULL; in bnepu_release_bcb()
437 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in bnepu_check_send_packet()
445 fixed_queue_enqueue(p_bcb->xmit_q, p_buf); in bnepu_check_send_packet()
Dbnep_api.c430 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in BNEP_WriteBuf()
535 if (fixed_queue_length(p_bcb->xmit_q) >= BNEP_MAX_XMITQ_DEPTH) in BNEP_Write()
728 p_status->xmit_q_depth = fixed_queue_length(p_bcb->xmit_q); in BNEP_GetStatus()
Dbnep_int.h137 fixed_queue_t *xmit_q; member
Dbnep_main.c448 BT_HDR *p_buf = (BT_HDR *)fixed_queue_try_dequeue(p_bcb->xmit_q); in bnep_congestion_ind()