Lines Matching refs:patchIt
259 auto patchIt = findById<AudioPatch>(patches, it->second); in findConnectedPortConfigIds() local
260 if (patchIt == patches.end()) { in findConnectedPortConfigIds()
265 if (std::find(patchIt->sourcePortConfigIds.begin(), patchIt->sourcePortConfigIds.end(), in findConnectedPortConfigIds()
266 portConfigId) != patchIt->sourcePortConfigIds.end()) { in findConnectedPortConfigIds()
267 result.insert(patchIt->sinkPortConfigIds.begin(), patchIt->sinkPortConfigIds.end()); in findConnectedPortConfigIds()
269 result.insert(patchIt->sourcePortConfigIds.begin(), patchIt->sourcePortConfigIds.end()); in findConnectedPortConfigIds()
873 if (auto patchIt = mPatches.find(in_args.portConfigId); patchIt != mPatches.end()) { in openInputStream() local
920 if (auto patchIt = mPatches.find(in_args.portConfigId); patchIt != mPatches.end()) { in openOutputStream() local
1237 auto patchIt = findById<AudioPatch>(patches, in_patchId); in resetAudioPatch() local
1238 if (patchIt != patches.end()) { in resetAudioPatch()
1240 cleanUpPatch(patchIt->id); in resetAudioPatch()
1241 if (auto status = updateStreamsConnectedState(*patchIt, AudioPatch{}); !status.isOk()) { in resetAudioPatch()
1245 patches.erase(patchIt); in resetAudioPatch()
1262 auto patchIt = mPatches.find(in_portConfigId); in resetAudioPortConfig() local
1263 if (patchIt != mPatches.end()) { in resetAudioPortConfig()
1265 << " is used by the patch with id " << patchIt->second; in resetAudioPortConfig()