Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:mtu

94 **                  mtu          - Maximum frame size the application can accept
113 UINT16 mtu, BD_ADDR bd_addr, UINT16 *p_handle,
141 RFCOMM_TRACE_API("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p",
142 scn, dlci, is_server, mtu, p_mcb);
163 RFCOMM_TRACE_API("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p, p_port:%p",
164 scn, dlci, is_server, mtu, p_mcb, p_port);
195 /* If the MTU is not specified (0), keep MTU decision until the
198 * will know for sure our prefered MTU
203 if (mtu)
204 p_port->mtu = (mtu < rfcomm_mtu) ? mtu : rfcomm_mtu;
206 p_port->mtu = rfcomm_mtu;
213 /* keep mtu that user asked, p_port->mtu could be updated during param negotiation */
214 p_port->keep_mtu = p_port->mtu;
1546 /* Length for each buffer is the smaller of GKI buffer, peer MTU, or max_len */
1691 /* Length for each buffer is the smaller of GKI buffer, peer MTU, or max_len */
1796 if (len > ((p_port->mtu == 0) ? RFCOMM_DEFAULT_MTU : p_port->mtu))