Home
last modified time | relevance | path

Searched refs:maxBytesLength (Results 1 – 1 of 1) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapUtils.java461 public static String truncateUtf8StringToString(String utf8InString, int maxBytesLength) { in truncateUtf8StringToString() argument
464 if (utf8InBytes.length <= maxBytesLength) { in truncateUtf8StringToString()
469 ByteBuffer truncatedString = ByteBuffer.wrap(utf8InBytes, 0, maxBytesLength); in truncateUtf8StringToString()
470 CharBuffer validUtf8Buffer = CharBuffer.allocate(maxBytesLength); in truncateUtf8StringToString()