Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/audio/
DCarVolume.java361 List<Integer> sortedContexts = getSortedContexts(); in dumpSortedContexts() local
363 for (int index = 0; index < sortedContexts.size(); index++) { in dumpSortedContexts()
364 int contextId = sortedContexts.get(index); in dumpSortedContexts()
390 List<Integer> sortedContexts = getSortedContexts(); in dumpProtoSortedContexts() local
392 for (int index = 0; index < sortedContexts.size(); index++) { in dumpProtoSortedContexts()
393 int contextId = sortedContexts.get(index); in dumpProtoSortedContexts()
416 List<Integer> sortedContexts = new ArrayList<>(mVolumePriorityByAudioContext.size()); in getSortedContexts() local
419 sortedContexts.add(contextId); in getSortedContexts()
421 sortedContexts.sort(Comparator.comparingInt(mVolumePriorityByAudioContext::get)); in getSortedContexts()
422 return sortedContexts; in getSortedContexts()