Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/jni/midi/
DMidiTestManager.cpp107 bool setTwoSysExMessage(int firstMsgBytes, int secondMsgBytes) { in setTwoSysExMessage() argument
108 if (firstMsgBytes <= 0 || secondMsgBytes <= 0) { in setTwoSysExMessage()
111 mNumMsgBytes = firstMsgBytes + secondMsgBytes; in setTwoSysExMessage()
115 for(int index = 1; index < firstMsgBytes - 1; index++) { in setTwoSysExMessage()
118 mMsgBytes[firstMsgBytes - 1] = kMIDISysCmd_EndOfSysEx; in setTwoSysExMessage()
119 mMsgBytes[firstMsgBytes] = kMIDISysCmd_SysEx; in setTwoSysExMessage()
120 for(int index = firstMsgBytes + 1; index < firstMsgBytes + secondMsgBytes - 1; index++) { in setTwoSysExMessage()
123 mMsgBytes[firstMsgBytes + secondMsgBytes - 1] = kMIDISysCmd_EndOfSysEx; in setTwoSysExMessage()