Lines Matching refs:m_NoteInfo
43 m_NoteInfo[i].channel = NULL; in MidiSequencePlayer()
455 if ( m_NoteInfo[i].channel != NULL ) in NoteOffAll()
457 m_NoteInfo[i].channel->Release(); in NoteOffAll()
458 m_NoteInfo[i].channel = NULL; in NoteOffAll()
466 if ( m_NoteInfo[i].channel != NULL ) in StopAllSound()
468 m_NoteInfo[i].channel = NULL; in StopAllSound()
493 if ( m_NoteInfo[i].channel != NULL ) in Reset()
495 m_NoteInfo[i].channel = NULL; in Reset()
511 if ( m_NoteInfo[i].channel == NULL ) { in FindFreeNoteInfo()
512 return &m_NoteInfo[i]; in FindFreeNoteInfo()
521 if ( m_NoteInfo[i].channel != NULL && in FindNoteInfo()
522 m_NoteInfo[i].channelIndex == channelIndex && in FindNoteInfo()
523 m_NoteInfo[i].key == key ) in FindNoteInfo()
525 return &m_NoteInfo[i]; in FindNoteInfo()
534 if ( m_NoteInfo[i].channel != NULL && in FindNoteInfo()
535 m_NoteInfo[i].channelIndex == channelIndex ) in FindNoteInfo()
537 return &m_NoteInfo[i]; in FindNoteInfo()
546 if ( m_NoteInfo[i].channel == channel ) { in ChannelCallback()
547 m_NoteInfo[i].channel = NULL; in ChannelCallback()