Home
last modified time | relevance | path

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

/aosp14/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothPacketEncoder.java44 private final byte[] mAccumulationBuffer; field in BluetoothPacketEncoder
112 mAccumulationBuffer[mAccumulatedBytes++] =
147 mAccumulationBuffer[mAccumulatedBytes++] =
149 mAccumulationBuffer[mAccumulatedBytes++] = MidiConstants.STATUS_END_SYSEX;
154 mAccumulationBuffer[mAccumulatedBytes++] = status;
164 System.arraycopy(msg, offset + 1, mAccumulationBuffer, mAccumulatedBytes,
179 mAccumulationBuffer[mAccumulatedBytes++] = in appendHeader()
193 mAccumulationBuffer = new byte[maxPacketSize]; in BluetoothPacketEncoder()
202 mMaxPacketSize = Math.min(maxPacketSize, mAccumulationBuffer.length); in setMaxPacketSize()
237 boolean wasSendSuccessful = mPacketReceiver.writePacket(mAccumulationBuffer, in flushLocked()
[all …]