Home
last modified time | relevance | path

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

/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
DBluetoothPacketEncoder.java41 private final byte[] mAccumulationBuffer; field in BluetoothPacketEncoder
89 if (mAccumulatedBytes + bytesNeeded > mAccumulationBuffer.length) {
103 mAccumulationBuffer[mAccumulatedBytes++] =
115 if (mAccumulatedBytes == mAccumulationBuffer.length) {
122 int copy = mAccumulationBuffer.length - mAccumulatedBytes;
124 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
132 if (mAccumulatedBytes + 2 > mAccumulationBuffer.length) {
138 mAccumulationBuffer[mAccumulatedBytes++] =
140 mAccumulationBuffer[mAccumulatedBytes++] = MidiConstants.STATUS_END_SYSEX;
145 mAccumulationBuffer[mAccumulatedBytes++] = status;
[all …]