Home
last modified time | relevance | path

Searched refs:fcrb (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2c_fcr.c175 if (p_ccb->fcrb.wait_ack) { in l2c_fcr_start_timer()
182 if (p_ccb->fcrb.mon_retrans_timer.in_use == 0) { in l2c_fcr_start_timer()
183 …btu_start_quick_timer (&p_ccb->fcrb.mon_retrans_timer, BTU_TTYPE_L2CAP_CHNL, tout * QUICK_TIMER_TI… in l2c_fcr_start_timer()
199 if (p_ccb->fcrb.mon_retrans_timer.in_use) { in l2c_fcr_stop_timer()
200 btu_stop_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_stop_timer()
216 btu_free_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_free_timer()
231 tL2C_FCRB *p_fcrb = &p_ccb->fcrb; in l2c_fcr_cleanup()
253 btu_free_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_cleanup()
258 UINT32 dur = osi_time_get_os_boottime_ms() - p_ccb->fcrb.connect_tick_count; in l2c_fcr_cleanup()
267 …p_ccb->fcrb.pkts_retransmitted, p_ccb->fcrb.xmit_window_closed, p_ccb->fcrb.retrans_touts, p_ccb-> in l2c_fcr_cleanup()
[all …]
Dl2c_utils.c1548 btu_free_quick_timer(&p_ccb->fcrb.ack_timer); in l2cu_allocate_ccb()
1549 memset(&p_ccb->fcrb.ack_timer, 0, sizeof(TIMER_LIST_ENT)); in l2cu_allocate_ccb()
1550 p_ccb->fcrb.ack_timer.param = (TIMER_PARAM_TYPE)p_ccb; in l2cu_allocate_ccb()
1552 btu_free_quick_timer(&p_ccb->fcrb.mon_retrans_timer); in l2cu_allocate_ccb()
1553 memset(&p_ccb->fcrb.mon_retrans_timer, 0, sizeof(TIMER_LIST_ENT)); in l2cu_allocate_ccb()
1554 p_ccb->fcrb.mon_retrans_timer.param = (TIMER_PARAM_TYPE)p_ccb; in l2cu_allocate_ccb()
1585 p_ccb->fcrb.srej_rcv_hold_q = fixed_queue_new(QUEUE_SIZE_MAX); in l2cu_allocate_ccb()
1586 p_ccb->fcrb.retrans_q = fixed_queue_new(QUEUE_SIZE_MAX); in l2cu_allocate_ccb()
1587 p_ccb->fcrb.waiting_for_ack_q = fixed_queue_new(QUEUE_SIZE_MAX); in l2cu_allocate_ccb()
1718 fixed_queue_free(p_ccb->fcrb.srej_rcv_hold_q, osi_free_func); in l2cu_release_ccb()
[all …]
Dl2c_csm.c721 if (p_ccb->fcrb.wait_ack) { in l2c_csm_config()
735 p_ccb->fcrb.connect_tick_count = osi_time_get_os_boottime_ms(); in l2c_csm_config()
808 if (p_ccb->fcrb.wait_ack) { in l2c_csm_config()
813 p_ccb->fcrb.connect_tick_count = osi_time_get_os_boottime_ms(); in l2c_csm_config()
Dl2c_api.c1008 if (p_ccb->fcrb.local_busy != on_off) { in L2CA_FlowControl()
1009 p_ccb->fcrb.local_busy = on_off; in L2CA_FlowControl()
1011 if ( (p_ccb->chnl_state == CST_OPEN) && (!p_ccb->fcrb.wait_ack) ) { in L2CA_FlowControl()
1048 p_ccb->fcrb.next_seq_expected -= back_track; in L2CA_SendTestSFrame()
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/include/
Dl2c_int.h323 tL2C_FCRB fcrb; member