Home
last modified time | relevance | path

Searched refs:maxStreams (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/media/java/android/media/
DSoundPool.java132 public SoundPool(int maxStreams, int streamType, int srcQuality) { in SoundPool() argument
133 this(maxStreams, in SoundPool()
137 private SoundPool(int maxStreams, AudioAttributes attributes) { in SoundPool() argument
141 mImpl = new SoundPoolImpl(this, maxStreams, attributes); in SoundPool()
168 public Builder setMaxStreams(int maxStreams) throws IllegalArgumentException { in setMaxStreams() argument
169 if (maxStreams <= 0) { in setMaxStreams()
173 mMaxStreams = maxStreams; in setMaxStreams()
531 public SoundPoolImpl(SoundPool proxy, int maxStreams, AudioAttributes attr) { in SoundPoolImpl() argument
534 if (native_setup(new WeakReference(this), maxStreams, attr) != 0) { in SoundPoolImpl()
714 private native final int native_setup(Object weakRef, int maxStreams, in native_setup() argument