Searched refs:maxStreams (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/media/java/android/media/ |
D | SoundPool.java | 142 public SoundPool(int maxStreams, int streamType, int srcQuality) { in SoundPool() argument 143 this(maxStreams, in SoundPool() 148 private SoundPool(int maxStreams, AudioAttributes attributes) { in SoundPool() argument 152 if (native_setup(new WeakReference<SoundPool>(this), maxStreams, attributes) != 0) { in SoundPool() 503 private native final int native_setup(Object weakRef, int maxStreams, in native_setup() argument 573 public Builder setMaxStreams(int maxStreams) throws IllegalArgumentException { in setMaxStreams() argument 574 if (maxStreams <= 0) { in setMaxStreams() 578 mMaxStreams = maxStreams; in setMaxStreams()
|
/frameworks/base/media/jni/soundpool/tests/ |
D | soundpool_stress.cpp | 224 int maxStreams = 40; // change to have more concurrent playback streams in main() local 244 maxStreams = atoi(optarg); in main() 277 auto soundPool = std::make_unique<SoundPool>(maxStreams, &aa); in main()
|
/frameworks/base/media/jni/soundpool/ |
D | SoundPool.cpp | 87 SoundPool::SoundPool(int32_t maxStreams, const audio_attributes_t* attributes) in SoundPool() argument 88 : mStreamManager(maxStreams, kStreamManagerThreads, attributes) in SoundPool() 91 __func__, maxStreams, in SoundPool()
|
D | SoundPool.h | 32 SoundPool(int32_t maxStreams, const audio_attributes_t* attributes);
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |