Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:mtu

59 **                  mtu          - Maximum frame size the application can accept
78 UINT16 mtu, BD_ADDR bd_addr, UINT16 *p_handle,
105 RFCOMM_TRACE_API5("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p",
106 scn, dlci, is_server, mtu, p_mcb);
126 RFCOMM_TRACE_API6("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p, p_port:%p",
127 scn, dlci, is_server, mtu, p_mcb, p_port);
158 /* If the MTU is not specified (0), keep MTU decision until the
161 * will know for sure our prefered MTU
166 if (mtu)
167 p_port->mtu = (mtu < rfcomm_mtu) ? mtu : rfcomm_mtu;
169 p_port->mtu = rfcomm_mtu;
176 /* keep mtu that user asked, p_port->mtu could be updated during param negotiation */
177 p_port->keep_mtu = p_port->mtu;
1442 /* Length for each buffer is the smaller of GKI buffer, peer MTU, or max_len */
1587 /* Length for each buffer is the smaller of GKI buffer, peer MTU, or max_len */
1697 if (len > ((p_port->mtu == 0) ? RFCOMM_DEFAULT_MTU : p_port->mtu))