Home | History | Annotate | Download | only in soundpool

Lines Matching full:channelid

190 SoundChannel* SoundPool::findChannel(int channelID)
193 if (mChannelPool[i].channelID() == channelID) {
200 SoundChannel* SoundPool::findNextChannel(int channelID)
203 if (mChannelPool[i].nextChannelID() == channelID) {
242 int channelID;
267 channelID = ++mNextChannelID;
270 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
271 return channelID;
326 void SoundPool::pause(int channelID)
328 ALOGV("pause(%d)", channelID);
330 SoundChannel* channel = findChannel(channelID);
346 void SoundPool::resume(int channelID)
348 ALOGV("resume(%d)", channelID);
350 SoundChannel* channel = findChannel(channelID);
366 void SoundPool::stop(int channelID)
368 ALOGV("stop(%d)", channelID);
370 SoundChannel* channel = findChannel(channelID);
374 channel = findNextChannel(channelID);
380 void SoundPool::setVolume(int channelID, float leftVolume, float rightVolume)
383 SoundChannel* channel = findChannel(channelID);
389 void SoundPool::setPriority(int channelID, int priority)
391 ALOGV("setPriority(%d, %d)", channelID, priority);
393 SoundChannel* channel = findChannel(channelID);
399 void SoundPool::setLoop(int channelID, int loop)
401 ALOGV("setLoop(%d, %d)", channelID, loop);
403 SoundChannel* channel = findChannel(channelID);
409 void SoundPool::setRate(int channelID, float rate)
411 ALOGV("setRate(%d, %f)", channelID, rate);
413 SoundChannel* channel = findChannel(channelID);
422 ALOGV("done_l(%d)", channel->channelID());
678 ALOGV("SoundChannel::play %p: sampleID=%d, channelID=%d, leftVolume=%f, rightVolume=%f,"
685 ALOGV("channel %d stolen - event queued for channel %d", channelID(), nextChannelID);
801 nextChannelID = mNextEvent.channelID();
815 ALOGV("Starting stolen channel %d -> %d", channelID(), nextChannelID);
1038 void SoundEvent::set(const sp<Sample>& sample, int channelID, float leftVolume,
1042 mChannelID = channelID;