Home
last modified time | relevance | path

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

/cts/tests/tests/media/audio/src/android/media/audio/cts/
DSoundPoolTest.java176 public void testSoundPoolOp(int streamCount) throws Exception { in testSoundPoolOp() argument
178 if (!ApiLevelUtil.isAtLeast(Build.VERSION_CODES.S) && streamCount < 4) { in testSoundPoolOp()
179 Log.d(TAG, "API before S: Skipping testSoundPoolOp(" + streamCount + ")"); in testSoundPoolOp()
183 mSoundPool = new SoundPool.Builder().setMaxStreams(streamCount) in testSoundPoolOp()
227 public void testMultiSound(int streamCount) throws Exception { in testMultiSound() argument
229 if (!ApiLevelUtil.isAtLeast(Build.VERSION_CODES.S) && streamCount < 4) { in testMultiSound()
230 Log.d(TAG, "API before S: Skipping testMultiSound(" + streamCount + ")"); in testMultiSound()
234 mSoundPool = new SoundPool.Builder().setMaxStreams(streamCount) in testMultiSound()
265 public void testLoadMore(int streamCount) throws Exception { in testLoadMore() argument
267 if (!ApiLevelUtil.isAtLeast(Build.VERSION_CODES.S) && streamCount < 4) { in testLoadMore()
[all …]
/cts/tests/camera/src/android/hardware/camera2/cts/
DRobustnessTest.java2924 int streamCount = useCaseSpecified ? combination.length / 3 : combination.length / 2; in isMandatoryCombinationAvailable() local
2927 new ArrayList<Pair<Pair<Integer, Boolean>, Size>>(streamCount); in isMandatoryCombinationAvailable()
2928 List<Integer> streamUseCases = new ArrayList<Integer>(streamCount); in isMandatoryCombinationAvailable()