Home | History | Annotate | Download | only in hl

Lines Matching defs:mps

208 UINT8 bta_hl_set_tx_win_size(UINT16 mtu, UINT16 mps)
212 if (mtu <= mps)
218 if (mps > 0)
220 tx_win_size = (mtu/mps)+1;
224 APPL_TRACE_ERROR0("The MPS is zero");
230 APPL_TRACE_DEBUG3("bta_hl_set_tx_win_size win_size=%d mtu=%d mps=%d",
231 tx_win_size, mtu, mps);
240 ** Description This function sets the MPS
242 ** Returns UINT16 MPS
247 UINT16 mps;
250 mps = BTA_HL_L2C_MPS;
254 mps = mtu;
257 APPL_TRACE_DEBUG2("bta_hl_set_mps mps=%d mtu=%d",
258 mps, mtu);
260 return mps;
2617 p_dcb->chnl_cfg.fcr_opt.mps = bta_hl_set_mps(p_dcb->max_rx_apdu_size);
2619 p_dcb->chnl_cfg.fcr_opt.mps);
2648 APPL_TRACE_DEBUG5("tx_win_sz=%d, max_transmit=%d, rtrans_tout=%d, mon_tout=%d, mps=%d",
2653 p_dcb->chnl_cfg.fcr_opt.mps);