Searched refs:soundPool (Results 1 - 8 of 8) sorted by last modified time

/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java82 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument
/frameworks/base/media/java/android/media/
H A DAudioService.java1765 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument
H A DMediaActionSound.java173 public void onLoadComplete(SoundPool soundPool,
177 soundPool.play(sampleId, 1.0f, 1.0f, 0, 0, 1.0f);
H A DSoundPool.java404 * @param soundPool SoundPool object from the load() method
405 * @param soundPool the sample ID of the sound loaded.
408 public void onLoadComplete(SoundPool soundPool, int sampleId, int status); argument
438 public EventHandler(SoundPool soundPool, Looper looper) { argument
440 mSoundPool = soundPool;
464 SoundPool soundPool = (SoundPool)((WeakReference)weakRef).get();
465 if (soundPool == null)
468 if (soundPool.mEventHandler != null) {
469 Message m = soundPool.mEventHandler.obtainMessage(msg, arg1, arg2, obj);
470 soundPool
[all...]
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp171 static void android_media_callback(SoundPoolEvent event, SoundPool* soundPool, void* user) argument
173 ALOGV("callback: (%d, %d, %d, %p, %p)", event.mMsg, event.mArg1, event.mArg2, soundPool, user);
/frameworks/av/include/media/
H A DSoundPool.h47 typedef void SoundPoolCallback(SoundPoolEvent event, SoundPool* soundPool, void* user);
122 void init(SoundPool* soundPool);
/frameworks/av/media/libmedia/
H A DSoundPool.cpp541 void SoundChannel::init(SoundPool* soundPool) argument
543 mSoundPool = soundPool;
H A DSoundPoolThread.cpp61 SoundPoolThread::SoundPoolThread(SoundPool* soundPool) : argument
62 mSoundPool(soundPool)

Completed in 560 milliseconds