Home | History | Annotate | Download | only in soundpool

Lines Matching refs:channelID

87 android_media_SoundPool_pause(JNIEnv *env, jobject thiz, jint channelID)
92 ap->pause(channelID);
96 android_media_SoundPool_resume(JNIEnv *env, jobject thiz, jint channelID)
101 ap->resume(channelID);
123 android_media_SoundPool_stop(JNIEnv *env, jobject thiz, jint channelID)
128 ap->stop(channelID);
132 android_media_SoundPool_setVolume(JNIEnv *env, jobject thiz, jint channelID,
138 ap->setVolume(channelID, leftVolume, rightVolume);
142 android_media_SoundPool_setPriority(JNIEnv *env, jobject thiz, jint channelID,
148 ap->setPriority(channelID, priority);
152 android_media_SoundPool_setLoop(JNIEnv *env, jobject thiz, jint channelID,
158 ap->setLoop(channelID, loop);
162 android_media_SoundPool_setRate(JNIEnv *env, jobject thiz, jint channelID,
168 ap->setRate(channelID, rate);