• Home
  • Raw
  • Download

Lines Matching refs:SoundPool

44 SoundPool::SoundPool(int maxChannels, const audio_attributes_t* pAttributes)  in SoundPool()  function in android::SoundPool
80 SoundPool::~SoundPool() in ~SoundPool()
99 void SoundPool::addToRestartList(SoundChannel* channel) in addToRestartList()
108 void SoundPool::addToStopList(SoundChannel* channel) in addToStopList()
117 int SoundPool::beginThread(void* arg) in beginThread()
119 SoundPool* p = (SoundPool*)arg; in beginThread()
123 int SoundPool::run() in run()
170 void SoundPool::quit() in quit()
180 bool SoundPool::startThreads() in startThreads()
188 sp<Sample> SoundPool::findSample(int sampleID) in findSample()
194 sp<Sample> SoundPool::findSample_l(int sampleID) in findSample_l()
199 SoundChannel* SoundPool::findChannel(int channelID) in findChannel()
209 SoundChannel* SoundPool::findNextChannel(int channelID) in findNextChannel()
219 int SoundPool::load(int fd, int64_t offset, int64_t length, int priority __unused) in load()
240 bool SoundPool::unload(int sampleID) in unload()
247 int SoundPool::play(int sampleID, float leftVolume, float rightVolume, in play()
285 SoundChannel* SoundPool::allocateChannel_l(int priority, int sampleID) in allocateChannel_l()
326 void SoundPool::moveToFront_l(SoundChannel* channel) in moveToFront_l()
337 void SoundPool::pause(int channelID) in pause()
347 void SoundPool::autoPause() in autoPause()
357 void SoundPool::resume(int channelID) in resume()
367 void SoundPool::mute(bool muting) in mute()
380 void SoundPool::autoResume() in autoResume()
390 void SoundPool::stop(int channelID) in stop()
404 void SoundPool::setVolume(int channelID, float leftVolume, float rightVolume) in setVolume()
413 void SoundPool::setPriority(int channelID, int priority) in setPriority()
423 void SoundPool::setLoop(int channelID, int loop) in setLoop()
433 void SoundPool::setRate(int channelID, float rate) in setRate()
444 void SoundPool::done_l(SoundChannel* channel) in done_l()
460 void SoundPool::setCallback(SoundPoolCallback* callback, void* user) in setCallback()
467 void SoundPool::notify(SoundPoolEvent event) in notify()
475 void SoundPool::dump() in dump()
716 void SoundChannel::init(SoundPool* soundPool) in init()