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

/frameworks/base/media/java/android/media/
H A DSoundPool.java47 * constructed, the maxStreams parameter sets the maximum number of streams
70 * streams to exceed the value established by the maxStreams parameter when
114 * @param maxStreams the maximum number of simultaneous streams for this
123 public SoundPool(int maxStreams, int streamType, int srcQuality) { argument
127 mImpl = new SoundPoolImpl(this, maxStreams, streamType, srcQuality);
459 public SoundPoolImpl(SoundPool proxy, int maxStreams, int streamType, int srcQuality) { argument
462 if (native_setup(new WeakReference(this), maxStreams, streamType, srcQuality) != 0) {
614 private native final int native_setup(Object weakRef, int maxStreams, int streamType, int srcQuality); argument

Completed in 66 milliseconds