Searched defs:SoundChannel (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/jni/soundpool/
H A DSoundPool.h113 class SoundChannel : public SoundEvent { class in namespace:android
116 SoundChannel() : mState(IDLE), mNumChannels(1), function in class:android::SoundChannel
118 ~SoundChannel();
162 friend class SoundChannel;
186 void done_l(SoundChannel* channel);
196 SoundChannel* findChannel (int channelID);
197 SoundChannel* findNextChannel (int channelID);
198 SoundChannel* allocateChannel_l(int priority, int sampleID);
199 void moveToFront_l(SoundChannel* channel);
204 void addToRestartList(SoundChannel* channe
[all...]
H A DSoundPool.cpp72 mChannelPool = new SoundChannel[mMaxChannels];
101 void SoundPool::addToRestartList(SoundChannel* channel)
110 void SoundPool::addToStopList(SoundChannel* channel)
134 SoundChannel* channel;
136 List<SoundChannel* >::iterator iter = mStop.begin();
149 SoundChannel* channel;
151 List<SoundChannel*>::iterator iter = mRestart.begin();
201 SoundChannel* SoundPool::findChannel(int channelID)
211 SoundChannel* SoundPool::findNextChannel(int channelID)
254 SoundChannel* channe
[all...]

Completed in 528 milliseconds