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

/frameworks/av/include/media/
H A DSoundPool.h116 class SoundChannel : public SoundEvent { class in namespace:android
119 SoundChannel() : mAudioTrack(NULL), mState(IDLE), mNumChannels(1), function in class:android::SoundChannel
121 ~SoundChannel();
163 friend class SoundChannel;
188 void done_l(SoundChannel* channel);
199 SoundChannel* findChannel (int channelID);
200 SoundChannel* findNextChannel (int channelID);
201 SoundChannel* allocateChannel_l(int priority);
202 void moveToFront_l(SoundChannel* channel);
207 void addToRestartList(SoundChannel* channe
[all...]
/frameworks/av/media/libmedia/
H A DSoundPool.cpp68 mChannelPool = new SoundChannel[mMaxChannels];
97 void SoundPool::addToRestartList(SoundChannel* channel)
106 void SoundPool::addToStopList(SoundChannel* channel)
130 SoundChannel* channel;
132 List<SoundChannel* >::iterator iter = mStop.begin();
145 SoundChannel* channel;
147 List<SoundChannel*>::iterator iter = mRestart.begin();
186 SoundChannel* SoundPool::findChannel(int channelID)
196 SoundChannel* SoundPool::findNextChannel(int channelID)
247 SoundChannel* channe
[all...]

Completed in 32 milliseconds