Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DPatchPanel.cpp166 for (size_t index = 0; *handle != 0 && index < mPatches.size(); index++) { in createAudioPatch()
167 if (*handle == mPatches[index]->mHandle) { in createAudioPatch()
169 halHandle = mPatches[index]->mHalHandle; in createAudioPatch()
170 Patch *removedPatch = mPatches[index]; in createAudioPatch()
211 mPatches.removeAt(index); in createAudioPatch()
411 mPatches.add(newPatch); in createAudioPatch()
584 for (index = 0; index < mPatches.size(); index++) { in releaseAudioPatch()
585 if (handle == mPatches[index]->mHandle) { in releaseAudioPatch()
589 if (index == mPatches.size()) { in releaseAudioPatch()
592 Patch *removedPatch = mPatches[index]; in releaseAudioPatch()
[all …]
DPatchPanel.h89 SortedVector <Patch *> mPatches; variable