Searched refs:soundPool (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/java/android/media/
H A DSoundPool.java406 * @param soundPool SoundPool object from the load() method
407 * @param soundPool the sample ID of the sound loaded.
410 public void onLoadComplete(SoundPool soundPool, int sampleId, int status); argument
440 public EventHandler(SoundPool soundPool, Looper looper) { argument
442 mSoundPool = soundPool;
466 SoundPool soundPool = (SoundPool)((WeakReference)weakRef).get();
467 if (soundPool == null)
470 if (soundPool.mEventHandler != null) {
471 Message m = soundPool.mEventHandler.obtainMessage(msg, arg1, arg2, obj);
472 soundPool
[all...]
H A DAudioService.java1201 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument
/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.cpp61 SoundPoolThread::SoundPoolThread(SoundPool* soundPool) : argument
62 mSoundPool(soundPool)
H A DSoundPool.h47 typedef void SoundPoolCallback(SoundPoolEvent event, SoundPool* soundPool, void* user);
122 void init(SoundPool* soundPool);
H A Dandroid_media_SoundPool.cpp171 static void android_media_callback(SoundPoolEvent event, SoundPool* soundPool, void* user) argument
173 LOGV("callback: (%d, %d, %d, %p, %p)", event.mMsg, event.mArg1, event.mArg2, soundPool, user);
H A DSoundPool.cpp541 void SoundChannel::init(SoundPool* soundPool) argument
543 mSoundPool = soundPool;
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java82 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument

Completed in 152 milliseconds