Lines Matching refs:sound
125 bool ExternalSoundPlayer::AppendSound( internal::BasicSound* sound ) in AppendSound() argument
127 NW_NULL_ASSERT( sound ); in AppendSound()
129 int allocPriority = sound->CalcCurrentPlayerPriority(); in AppendSound()
141 m_SoundList.PushBack( sound ); in AppendSound()
143 sound->AttachExternalSoundPlayer( this ); in AppendSound()
179 void ExternalSoundPlayer::RemoveSound( internal::BasicSound* sound ) in RemoveSound() argument
182 m_SoundList.Erase( sound ); in RemoveSound()
183 sound->DetachExternalSoundPlayer( this ); in RemoveSound()
231 internal::BasicSound* sound = NULL; in GetLowestPrioritySound() local
238 sound = &*itr; in GetLowestPrioritySound()
243 return sound; in GetLowestPrioritySound()