Home
last modified time | relevance | path

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

/system/bt/stack/l2cap/
Dl2c_fcr.c175 if (p_ccb->fcrb.wait_ack) in l2c_fcr_start_timer()
185 if (p_ccb->fcrb.mon_retrans_timer.in_use == 0) in l2c_fcr_start_timer()
186 …btu_start_quick_timer (&p_ccb->fcrb.mon_retrans_timer, BTU_TTYPE_L2CAP_CHNL, tout*QUICK_TIMER_TICK… in l2c_fcr_start_timer()
201 if (p_ccb->fcrb.mon_retrans_timer.in_use) in l2c_fcr_stop_timer()
203 btu_stop_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_stop_timer()
219 tL2C_FCRB *p_fcrb = &p_ccb->fcrb; in l2c_fcr_cleanup()
236 btu_stop_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_cleanup()
241 UINT32 dur = GKI_get_os_tick_count() - p_ccb->fcrb.connect_tick_count; in l2c_fcr_cleanup()
250 …p_ccb->fcrb.pkts_retransmitted, p_ccb->fcrb.xmit_window_closed, p_ccb->fcrb.retrans_touts, p_ccb-> in l2c_fcr_cleanup()
252 …here is less than 2 packets in controller when flow controlled:%08u", p_ccb->fcrb.controller_idle); in l2c_fcr_cleanup()
[all …]
Dl2c_utils.c1553 p_ccb->fcrb.ack_timer.param = (TIMER_PARAM_TYPE)p_ccb; in l2cu_allocate_ccb()
1556 if (p_ccb->fcrb.ack_timer.in_use) in l2cu_allocate_ccb()
1557 btu_stop_quick_timer (&p_ccb->fcrb.ack_timer); in l2cu_allocate_ccb()
1559 p_ccb->fcrb.mon_retrans_timer.param = (TIMER_PARAM_TYPE)p_ccb; in l2cu_allocate_ccb()
1565 if (p_ccb->fcrb.mon_retrans_timer.in_use) in l2cu_allocate_ccb()
1566 btu_stop_quick_timer (&p_ccb->fcrb.mon_retrans_timer); in l2cu_allocate_ccb()
2063 p_ccb->fcrb.max_held_acks = p_cfg->fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
2065 p_ccb->fcrb.max_held_acks = p_ccb->our_cfg.fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
2068 … p_cfg->fcr.tx_win_sz, p_ccb->our_cfg.fcr.tx_win_sz, p_ccb->fcrb.max_held_acks); in l2cu_process_peer_cfg_rsp()
2112 p_ccb->fcrb.max_held_acks = p_cfg->fcr.tx_win_sz / 3; in l2cu_process_our_cfg_req()
[all …]
Dl2c_csm.c768 if (p_ccb->fcrb.wait_ack) in l2c_csm_config()
782 p_ccb->fcrb.connect_tick_count = GKI_get_os_tick_count(); in l2c_csm_config()
860 if (p_ccb->fcrb.wait_ack) in l2c_csm_config()
864 p_ccb->fcrb.connect_tick_count = GKI_get_os_tick_count(); in l2c_csm_config()
Dl2c_api.c1039 if (p_ccb->fcrb.local_busy != on_off) in L2CA_FlowControl()
1041 p_ccb->fcrb.local_busy = on_off; in L2CA_FlowControl()
1043 if ( (p_ccb->chnl_state == CST_OPEN) && (!p_ccb->fcrb.wait_ack) ) in L2CA_FlowControl()
1080 p_ccb->fcrb.next_seq_expected -= back_track; in L2CA_SendTestSFrame()
Dl2c_int.h297 tL2C_FCRB fcrb; member