Searched refs:streamCount (Results 1 – 2 of 2) sorted by relevance
176 public void testSoundPoolOp(int streamCount) throws Exception { in testSoundPoolOp() argument178 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() argument229 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() argument267 if (!ApiLevelUtil.isAtLeast(Build.VERSION_CODES.S) && streamCount < 4) { in testLoadMore()[all …]
2924 int streamCount = useCaseSpecified ? combination.length / 3 : combination.length / 2; in isMandatoryCombinationAvailable() local2927 new ArrayList<Pair<Pair<Integer, Boolean>, Size>>(streamCount); in isMandatoryCombinationAvailable()2928 List<Integer> streamUseCases = new ArrayList<Integer>(streamCount); in isMandatoryCombinationAvailable()