Home
last modified time | relevance | path

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

/aosp14/frameworks/base/media/java/android/media/
H A DAudioManager.java7426 ArrayList<AudioPatch> newPatches = new ArrayList<AudioPatch>(); in updateAudioPortCache() local
7435 newPatches.clear(); in updateAudioPortCache()
7436 status = AudioSystem.listAudioPatches(newPatches, patchGeneration); in updateAudioPortCache()
7451 for (int i = 0; i < newPatches.size(); i++) { in updateAudioPortCache()
7452 for (int j = 0; j < newPatches.get(i).sources().length; j++) { in updateAudioPortCache()
7455 newPatches.get(i).sources()[j] = portCfg; in updateAudioPortCache()
7457 for (int j = 0; j < newPatches.get(i).sinks().length; j++) { in updateAudioPortCache()
7458 AudioPortConfig portCfg = updatePortConfig(newPatches.get(i).sinks()[j], in updateAudioPortCache()
7460 newPatches.get(i).sinks()[j] = portCfg; in updateAudioPortCache()
7463 for (Iterator<AudioPatch> i = newPatches.iterator(); i.hasNext(); ) { in updateAudioPortCache()
[all …]