Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:mtu

481              * Callback invoked when the MTU for a given connection changes
484 public void onConfigureMTU(String address, int mtu, int status) {
486 " mtu=" + mtu + " status=" + status);
491 mCallback.onMtuChanged(BluetoothGatt.this, mtu, status);
1131 * Request an MTU size used for a given connection.
1134 * the data sent is truncated to the MTU size. This function may be used
1135 * to request a larger MTU size to be able to send more data at once.
1142 * @return true, if the new MTU value has been requested successfully
1144 public boolean requestMtu(int mtu) {
1146 + " mtu: " + mtu);
1150 mService.configureMTU(mClientIf, mDevice.getAddress(), mtu);