Home
last modified time | relevance | path

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

/system/bt/stack/l2cap/
Dl2c_fcr.cc175 if (p_ccb->fcrb.wait_ack) { in l2c_fcr_start_timer()
182 if (!alarm_is_scheduled(p_ccb->fcrb.mon_retrans_timer)) { in l2c_fcr_start_timer()
183 alarm_set_on_mloop(p_ccb->fcrb.mon_retrans_timer, tout, in l2c_fcr_start_timer()
199 alarm_cancel(p_ccb->fcrb.mon_retrans_timer); in l2c_fcr_stop_timer()
214 tL2C_FCRB* p_fcrb = &p_ccb->fcrb; in l2c_fcr_cleanup()
236 p_ccb->fcrb.connect_tick_count; in l2c_fcr_cleanup()
250 p_ccb->fcrb.pkts_retransmitted, p_ccb->fcrb.xmit_window_closed, in l2c_fcr_cleanup()
251 p_ccb->fcrb.retrans_touts, p_ccb->fcrb.xmit_ack_touts); in l2c_fcr_cleanup()
256 p_ccb->fcrb.controller_idle); in l2c_fcr_cleanup()
260 p_ccb->fcrb.max_held_acks, p_ccb->peer_cfg.fcr.tx_win_sz); in l2c_fcr_cleanup()
[all …]
Dl2c_utils.cc1456 alarm_free(p_ccb->fcrb.ack_timer); in l2cu_allocate_ccb()
1457 p_ccb->fcrb.ack_timer = alarm_new("l2c_fcrb.ack_timer"); in l2cu_allocate_ccb()
1463 alarm_free(p_ccb->fcrb.mon_retrans_timer); in l2cu_allocate_ccb()
1464 p_ccb->fcrb.mon_retrans_timer = alarm_new("l2c_fcrb.mon_retrans_timer"); in l2cu_allocate_ccb()
1478 p_ccb->fcrb.srej_rcv_hold_q = fixed_queue_new(SIZE_MAX); in l2cu_allocate_ccb()
1479 p_ccb->fcrb.retrans_q = fixed_queue_new(SIZE_MAX); in l2cu_allocate_ccb()
1480 p_ccb->fcrb.waiting_for_ack_q = fixed_queue_new(SIZE_MAX); in l2cu_allocate_ccb()
1975 p_ccb->fcrb.max_held_acks = p_cfg->fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
1977 p_ccb->fcrb.max_held_acks = p_ccb->our_cfg.fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
1983 p_ccb->fcrb.max_held_acks); in l2cu_process_peer_cfg_rsp()
[all …]
Dl2c_csm.cc805 if (p_ccb->fcrb.wait_ack) l2c_fcr_start_timer(p_ccb); in l2c_csm_config()
820 p_ccb->fcrb.connect_tick_count = in l2c_csm_config()
906 if (p_ccb->fcrb.wait_ack) l2c_fcr_start_timer(p_ccb); in l2c_csm_config()
909 p_ccb->fcrb.connect_tick_count = in l2c_csm_config()
Dl2c_api.cc1327 if (p_ccb->fcrb.local_busy != on_off) { in L2CA_FlowControl()
1328 p_ccb->fcrb.local_busy = on_off; in L2CA_FlowControl()
1330 if ((p_ccb->chnl_state == CST_OPEN) && (!p_ccb->fcrb.wait_ack)) { in L2CA_FlowControl()
1368 p_ccb->fcrb.next_seq_expected -= back_track; in L2CA_SendTestSFrame()
Dl2c_int.h322 tL2C_FCRB fcrb; member