Lines Matching refs:m_NoteInfo
45 m_NoteInfo[i].channel = NULL; in MidiSequencePlayer()
457 if ( m_NoteInfo[i].channel != NULL ) in NoteOffAll()
459 m_NoteInfo[i].channel->Release(); in NoteOffAll()
460 m_NoteInfo[i].channel = NULL; in NoteOffAll()
468 if ( m_NoteInfo[i].channel != NULL ) in StopAllSound()
470 m_NoteInfo[i].channel = NULL; in StopAllSound()
495 if ( m_NoteInfo[i].channel != NULL ) in Reset()
497 m_NoteInfo[i].channel = NULL; in Reset()
513 if ( m_NoteInfo[i].channel == NULL ) { in FindFreeNoteInfo()
514 return &m_NoteInfo[i]; in FindFreeNoteInfo()
523 if ( m_NoteInfo[i].channel != NULL && in FindNoteInfo()
524 m_NoteInfo[i].channelIndex == channelIndex && in FindNoteInfo()
525 m_NoteInfo[i].key == key ) in FindNoteInfo()
527 return &m_NoteInfo[i]; in FindNoteInfo()
536 if ( m_NoteInfo[i].channel != NULL && in FindNoteInfo()
537 m_NoteInfo[i].channelIndex == channelIndex ) in FindNoteInfo()
539 return &m_NoteInfo[i]; in FindNoteInfo()
548 if ( m_NoteInfo[i].channel == channel ) { in ChannelCallback()
549 m_NoteInfo[i].channel = NULL; in ChannelCallback()