Searched defs:mSoundPool (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.h62 SoundPool* mSoundPool; member in class:android::SoundPoolThread
H A DSoundPool.h148 SoundPool* mSoundPool; member in class:android::SoundChannel
/frameworks/base/media/java/android/media/
H A DSoundPool.java436 private SoundPool mSoundPool; field in class:SoundPool.EventHandler
440 mSoundPool = soundPool;
450 mOnLoadCompleteListener.onLoadComplete(mSoundPool, msg.arg1, msg.arg2);
H A DAudioService.java124 private SoundPool mSoundPool; field in class:AudioService
786 if (mSoundPool != null) {
789 mSoundPool = new SoundPool(NUM_SOUNDPOOL_CHANNELS, AudioSystem.STREAM_SYSTEM, 0);
790 if (mSoundPool == null) {
815 int sampleId = mSoundPool.load(filePath, 0);
837 if (mSoundPool == null) {
850 mSoundPool.unload(SOUND_EFFECT_FILES_MAP[effect][1]);
855 mSoundPool = null;
1542 if (mSoundPool == null) {
1558 mSoundPool
[all...]
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java70 private SoundPool mSoundPool = null; field in class:SoundPoolTest.TestThread
84 synchronized(mSoundPool) {
90 mSoundPool.notify();
97 int id = mSoundPool.load(getApplicationContext(), resId, priority);
106 if (mSoundPool != null) {
108 mSoundPool.release();
109 mSoundPool = null;
115 mSoundPool = new SoundPool(numStreams, AudioSystem.STREAM_MUSIC, 0);
116 mSoundPool.setOnLoadCompleteListener(new LoadCompleteCallback());
121 synchronized(mSoundPool) {
[all...]

Completed in 92 milliseconds