Home
last modified time | relevance | path

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

/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
DBluetoothPacketEncoder.java46 private int mAccumulatedBytes; field in BluetoothPacketEncoder
98 if (mAccumulatedBytes + bytesNeeded > mMaxPacketSize) {
112 mAccumulationBuffer[mAccumulatedBytes++] =
124 if (mAccumulatedBytes == mMaxPacketSize) {
131 int copy = mMaxPacketSize - mAccumulatedBytes;
133 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
134 mAccumulatedBytes += copy;
141 if (mAccumulatedBytes + 2 > mMaxPacketSize) {
147 mAccumulationBuffer[mAccumulatedBytes++] =
149 mAccumulationBuffer[mAccumulatedBytes++] = MidiConstants.STATUS_END_SYSEX;
[all …]