Searched defs:mAccumulationBuffer (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothPacketEncoder.java41 private final byte[] mAccumulationBuffer; field in class:BluetoothPacketEncoder
42 // number of bytes currently in mAccumulationBuffer
84 if (mAccumulatedBytes + bytesNeeded > mAccumulationBuffer.length) {
98 mAccumulationBuffer[mAccumulatedBytes++] =
110 if (mAccumulatedBytes == mAccumulationBuffer.length) {
117 int copy = mAccumulationBuffer.length - mAccumulatedBytes;
119 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
127 if (mAccumulatedBytes + 2 > mAccumulationBuffer.length) {
133 mAccumulationBuffer[mAccumulatedBytes++] =
135 mAccumulationBuffer[mAccumulatedByte
[all...]

Completed in 353 milliseconds