Searched refs:mAccumulatedBytes (Results 1 – 1 of 1) sorted by relevance
46 private int mAccumulatedBytes; field in BluetoothPacketEncoder98 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 …]