Searched refs:mMatchStream (Results 1 – 3 of 3) sorted by relevance
171 private ArrayList<Byte> mMatchStream = new ArrayList<Byte>(); field in MidiJavaTestActivity.JavaMidiTestModule271 mMatchStream.clear(); in setupTestMessages()273 mMatchStream.add(mWarmUpMsg[byteIndex]); in setupTestMessages()277 mMatchStream.add(mTestMessages[msgIndex].mMsgBytes[byteIndex]); in setupTestMessages()284 logByteArray("mMatchStream: ", mMatchStream, 0); in setupTestMessages()311 if (mReceiveStreamPos >= mMatchStream.size()) { in matchStream()314 " of " + mMatchStream.size()); in matchStream()316 logByteArray("Expected: ", mMatchStream, 0); in matchStream()321 if (bytes[offset + index] != mMatchStream.get(mReceiveStreamPos)) { in matchStream()325 int expectedValue = mMatchStream.get(mReceiveStreamPos) & 0x000000FF; in matchStream()[all …]
101 mMatchStream.clear(); in ~MidiTestManager()121 mMatchStream.clear(); in buildMatchStream()123 mMatchStream.push_back(warmupMsg[byteIndex]); in buildMatchStream()127 mMatchStream.push_back(mTestMsgs[msgIndex].mMsgBytes[byteIndex]); in buildMatchStream()172 if (mReceiveStreamPos >= mMatchStream.size()) { in matchStream()178 if (bytes[index] != mMatchStream[mReceiveStreamPos]) { in matchStream()181 index, bytes[index], mMatchStream[mReceiveStreamPos]); in matchStream()300 if (totalNumReceived > mMatchStream.size()) { in ProcessInput()307 if (totalNumReceived == mMatchStream.size()) { in ProcessInput()
47 std::vector<uint8_t> mMatchStream; variable