Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DAudioManager.java4441 ArrayList<AudioPatch> newPatches = new ArrayList<AudioPatch>(); in updateAudioPortCache() local
4450 newPatches.clear(); in updateAudioPortCache()
4451 status = AudioSystem.listAudioPatches(newPatches, patchGeneration); in updateAudioPortCache()
4466 for (int i = 0; i < newPatches.size(); i++) { in updateAudioPortCache()
4467 for (int j = 0; j < newPatches.get(i).sources().length; j++) { in updateAudioPortCache()
4468 AudioPortConfig portCfg = updatePortConfig(newPatches.get(i).sources()[j], in updateAudioPortCache()
4470 newPatches.get(i).sources()[j] = portCfg; in updateAudioPortCache()
4472 for (int j = 0; j < newPatches.get(i).sinks().length; j++) { in updateAudioPortCache()
4473 AudioPortConfig portCfg = updatePortConfig(newPatches.get(i).sinks()[j], in updateAudioPortCache()
4475 newPatches.get(i).sinks()[j] = portCfg; in updateAudioPortCache()
[all …]