Searched refs:channelID (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/jni/soundpool/
H A DSoundPool.h91 void set(const sp<Sample>& sample, int channelID, float leftVolume,
94 int channelID() { return mChannelID; } function in class:android::SoundEvent
120 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume,
137 int nextChannelID() { return mNextEvent.channelID(); }
170 void pause(int channelID);
172 void resume(int channelID);
174 void stop(int channelID);
175 void setVolume(int channelID, float leftVolume, float rightVolume);
176 void setPriority(int channelID, int priority);
177 void setLoop(int channelID, in
[all...]
H A Dandroid_media_SoundPool.cpp80 android_media_SoundPool_pause(JNIEnv *env, jobject thiz, jint channelID) argument
85 ap->pause(channelID);
89 android_media_SoundPool_resume(JNIEnv *env, jobject thiz, jint channelID) argument
94 ap->resume(channelID);
116 android_media_SoundPool_stop(JNIEnv *env, jobject thiz, jint channelID) argument
121 ap->stop(channelID);
125 android_media_SoundPool_setVolume(JNIEnv *env, jobject thiz, jint channelID, argument
131 ap->setVolume(channelID, (float) leftVolume, (float) rightVolume);
135 android_media_SoundPool_setPriority(JNIEnv *env, jobject thiz, jint channelID, argument
141 ap->setPriority(channelID, (in
145 android_media_SoundPool_setLoop(JNIEnv *env, jobject thiz, jint channelID, int loop) argument
155 android_media_SoundPool_setRate(JNIEnv *env, jobject thiz, jint channelID, jfloat rate) argument
[all...]
H A DSoundPool.cpp201 SoundChannel* SoundPool::findChannel(int channelID) argument
204 if (mChannelPool[i].channelID() == channelID) {
211 SoundChannel* SoundPool::findNextChannel(int channelID) argument
214 if (mChannelPool[i].nextChannelID() == channelID) {
255 int channelID; local
280 channelID = ++mNextChannelID;
283 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
284 return channelID;
339 void SoundPool::pause(int channelID) argument
359 resume(int channelID) argument
379 stop(int channelID) argument
393 setVolume(int channelID, float leftVolume, float rightVolume) argument
402 setPriority(int channelID, int priority) argument
412 setLoop(int channelID, int loop) argument
422 setRate(int channelID, float rate) argument
1075 set(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume, int priority, int loop, float rate) argument
[all...]

Completed in 5765 milliseconds