Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2c_utils.c993 while ((p_buf2 = (BT_HDR *)fixed_queue_dequeue(p_ccb->xmit_hold_q, 0)) != NULL) { in l2cu_send_peer_disc_req()
1583 p_ccb->xmit_hold_q = fixed_queue_new(QUEUE_SIZE_MAX); in l2cu_allocate_ccb()
1715 fixed_queue_free(p_ccb->xmit_hold_q, osi_free_func); in l2cu_release_ccb()
1716 p_ccb->xmit_hold_q = NULL; in l2cu_release_ccb()
3341 fixed_queue_length(p_ccb->xmit_hold_q)); in l2cu_get_next_channel_in_rr()
3365 if (fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in l2cu_get_next_channel_in_rr()
3378 if (fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in l2cu_get_next_channel_in_rr()
3440 if (fixed_queue_is_empty(p_ccb->xmit_hold_q)) in l2cu_get_next_channel()
3493 if (fixed_queue_is_empty(p_ccb->xmit_hold_q)) {
3511 if (!fixed_queue_is_empty(p_ccb->xmit_hold_q)) {
[all …]
Dl2c_api.c1835 … fixed_queue_length(p_lcb->p_fixed_ccbs[fixed_cid - L2CAP_FIRST_FIXED_CHNL]->xmit_hold_q), in L2CA_SendFixedChnlData()
2254 fixed_queue_length(p_ccb->xmit_hold_q), in L2CA_FlushChannel()
2255 fixed_queue_try_peek_first(p_ccb->xmit_hold_q)); in L2CA_FlushChannel()
2294 while ( (num_to_flush != 0) && (!fixed_queue_is_empty(p_ccb->xmit_hold_q))) { in L2CA_FlushChannel()
2295 BT_HDR *p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->xmit_hold_q, 0); in L2CA_FlushChannel()
2320 num_left += fixed_queue_length(p_ccb->xmit_hold_q); in L2CA_FlushChannel()
2410 fixed_queue_t * queue = p_ccb->xmit_hold_q; in l2ble_update_att_acl_pkt_num()
Dl2c_csm.c738 if (!fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in l2c_csm_config()
818 (!fixed_queue_is_empty(p_ccb->xmit_hold_q))) { in l2c_csm_config()
1246 fixed_queue_enqueue(p_ccb->xmit_hold_q, p_buf, FIXED_QUEUE_MAX_TIMEOUT); in l2c_enqueue_peer_data()
Dl2c_fcr.c382 if (!fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in l2c_fcr_is_flow_controlled()
795 !fixed_queue_is_empty(p_ccb->xmit_hold_q)) in l2c_fcr_proc_pdu()
945 fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in process_reqseq()
1193 } else if ((fixed_queue_is_empty(p_ccb->xmit_hold_q) || in process_i_frame()
1562 p_buf = (BT_HDR *)fixed_queue_try_peek_first(p_ccb->xmit_hold_q); in l2c_fcr_get_next_xmit_sdu_seg()
1592 p_xmit = (BT_HDR *)fixed_queue_dequeue(p_ccb->xmit_hold_q, 0); in l2c_fcr_get_next_xmit_sdu_seg()
Dl2c_ucd.c424 (fixed_queue_length(p_ccb->xmit_hold_q) + in L2CA_UcdDataWrite()
Dl2c_main.c1048 fixed_queue_length(p_ccb->xmit_hold_q), in l2c_data_write()
Dl2c_link.c996 if (!fixed_queue_is_empty(p_ccb->xmit_hold_q)) { in l2c_link_check_power_mode()
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/include/
Dl2c_int.h313 fixed_queue_t *xmit_hold_q; /* Transmit data hold queue */ member