Searched refs:mAccumulationBuffer (Results 1 – 1 of 1) sorted by relevance
41 private final byte[] mAccumulationBuffer; field in BluetoothPacketEncoder89 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 …]