Lines Matching refs:fcr
663 UINT8_TO_STREAM (p, p_cfg->fcr.mode); in l2cu_send_peer_config_req()
664 UINT8_TO_STREAM (p, p_cfg->fcr.tx_win_sz); in l2cu_send_peer_config_req()
665 UINT8_TO_STREAM (p, p_cfg->fcr.max_transmit); in l2cu_send_peer_config_req()
666 UINT16_TO_STREAM (p, p_cfg->fcr.rtrans_tout); in l2cu_send_peer_config_req()
667 UINT16_TO_STREAM (p, p_cfg->fcr.mon_tout); in l2cu_send_peer_config_req()
668 UINT16_TO_STREAM (p, p_cfg->fcr.mps); in l2cu_send_peer_config_req()
763 UINT8_TO_STREAM (p, p_cfg->fcr.mode); in l2cu_send_peer_config_rsp()
764 UINT8_TO_STREAM (p, p_cfg->fcr.tx_win_sz); in l2cu_send_peer_config_rsp()
765 UINT8_TO_STREAM (p, p_cfg->fcr.max_transmit); in l2cu_send_peer_config_rsp()
766 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.rtrans_tout); in l2cu_send_peer_config_rsp()
767 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.mon_tout); in l2cu_send_peer_config_rsp()
768 UINT16_TO_STREAM (p, p_cfg->fcr.mps); in l2cu_send_peer_config_rsp()
948 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_BASIC_MODE) in l2cu_send_peer_disc_req()
1979 p_cfg->fcr.mode = L2CAP_FCR_BASIC_MODE; in l2cu_process_peer_cfg_req()
2111 if (p_cfg->fcr.mode == L2CAP_FCR_ERTM_MODE) in l2cu_process_peer_cfg_rsp()
2113 p_ccb->peer_cfg.fcr.rtrans_tout = p_cfg->fcr.rtrans_tout; in l2cu_process_peer_cfg_rsp()
2114 p_ccb->peer_cfg.fcr.mon_tout = p_cfg->fcr.mon_tout; in l2cu_process_peer_cfg_rsp()
2118 if (p_cfg->fcr.tx_win_sz < p_ccb->our_cfg.fcr.tx_win_sz) in l2cu_process_peer_cfg_rsp()
2119 p_ccb->fcrb.max_held_acks = p_cfg->fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
2121 p_ccb->fcrb.max_held_acks = p_ccb->our_cfg.fcr.tx_win_sz / 3; in l2cu_process_peer_cfg_rsp()
2124 … 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()
2154 if (p_cfg->fcr.mode == L2CAP_FCR_BASIC_MODE) in l2cu_process_our_cfg_req()
2155 memset(&p_cfg->fcr, 0, sizeof(tL2CAP_FCR_OPTS)); in l2cu_process_our_cfg_req()
2161 p_cfg->fcr.mon_tout = p_cfg->fcr.rtrans_tout = 0; in l2cu_process_our_cfg_req()
2163 if (p_cfg->fcr.mode == L2CAP_FCR_STREAM_MODE) in l2cu_process_our_cfg_req()
2164 p_cfg->fcr.max_transmit = p_cfg->fcr.tx_win_sz = 0; in l2cu_process_our_cfg_req()
2168 p_ccb->fcrb.max_held_acks = p_cfg->fcr.tx_win_sz / 3; in l2cu_process_our_cfg_req()
2182 p_cfg->fcr.mode = L2CAP_FCR_BASIC_MODE; in l2cu_process_our_cfg_req()
2185 p_ccb->our_cfg.fcr.mode = p_cfg->fcr.mode; in l2cu_process_our_cfg_req()
2707 …"l2cu_adjust_out_mps bad packet size: %u will use MPS: %u", packet_size, p_ccb->peer_cfg.fcr.mps); in l2cu_adjust_out_mps()
2708 p_ccb->tx_mps = p_ccb->peer_cfg.fcr.mps; in l2cu_adjust_out_mps()
2722 if (p_ccb->peer_cfg.fcr.mps >= packet_size) in l2cu_adjust_out_mps()
2723 p_ccb->tx_mps = p_ccb->peer_cfg.fcr.mps / packet_size * packet_size; in l2cu_adjust_out_mps()
2725 p_ccb->tx_mps = p_ccb->peer_cfg.fcr.mps; in l2cu_adjust_out_mps()
2728 p_ccb->tx_mps, p_ccb->peer_cfg.fcr.mps, packet_size); in l2cu_adjust_out_mps()
2771 p_ccb->our_cfg.fcr = p_ccb->peer_cfg.fcr = *p_fcr; in l2cu_initialize_fixed_ccb()
3432 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) in l2cu_get_next_channel_in_rr()
3443 … if ( (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) && (l2c_fcr_is_flow_controlled (p_ccb)) ) in l2cu_get_next_channel_in_rr()
3514 … if ( (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) && (l2c_fcr_is_flow_controlled (p_ccb)) ) in l2cu_get_next_channel()
3550 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) in l2cu_get_next_buffer_to_send()
3562 … if ( (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) && (l2c_fcr_is_flow_controlled (p_ccb)) ) in l2cu_get_next_buffer_to_send()
3621 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) in l2cu_get_next_buffer_to_send()
3637 …if ( p_ccb->p_rcb && p_ccb->p_rcb->api.pL2CA_TxComplete_Cb && (p_ccb->peer_cfg.fcr.mode != L2CAP_F… in l2cu_get_next_buffer_to_send()