Lines Matching refs:mixPortIt

245     const auto mixPortIt = findById<AudioPort>(mPorts, mixPortConfig.portId);  in getConnectedDevicesPortsForMixPort()  local
246 if (mixPortIt != mPorts.end()) { in getConnectedDevicesPortsForMixPort()
247 return getConnectedDevicesPortsForMixPort(isInput, *mixPortIt); in getConnectedDevicesPortsForMixPort()
288 const auto mixPortIt = findById<AudioPort>(mPorts, route.sourcePortIds[0]); in getSourceMixPortForConnectedDevice() local
289 if (mixPortIt != mPorts.end()) return *mixPortIt; in getSourceMixPortForConnectedDevice()
360 const auto mixPortIt = findById<AudioPort>(mPorts, route.sinkPortId); in getRoutableSrcSinkPair() local
361 if (devicePortIt == mPorts.end() || mixPortIt == mPorts.end()) continue; in getRoutableSrcSinkPair()
363 auto mixPortConfig = getSingleConfigForMixPort(isInput, *mixPortIt); in getRoutableSrcSinkPair()
371 const auto mixPortIt = findById<AudioPort>(mPorts, route.sourcePortIds[0]); in getRoutableSrcSinkPair() local
373 if (devicePortIt == mPorts.end() || mixPortIt == mPorts.end()) continue; in getRoutableSrcSinkPair()
374 auto mixPortConfig = getSingleConfigForMixPort(isInput, *mixPortIt); in getRoutableSrcSinkPair()
394 const auto mixPortIt = findById<AudioPort>(mPorts, route.sinkPortId); in getRoutableSrcSinkGroups() local
395 if (mixPortIt == mPorts.end()) continue; in getRoutableSrcSinkGroups()
396 auto mixPortConfig = getSingleConfigForMixPort(isInput, *mixPortIt); in getRoutableSrcSinkGroups()
419 const auto mixPortIt = findById<AudioPort>(mPorts, srcPortId); in getRoutableSrcSinkGroups() local
420 if (mixPortIt == mPorts.end()) continue; in getRoutableSrcSinkGroups()
422 auto mixPortConfig = getSingleConfigForMixPort(isInput, *mixPortIt); in getRoutableSrcSinkGroups()
485 for (auto mixPortIt = mixPorts.begin(); mixPortIt != mixPorts.end();) { in findMixPorts() local
486 mixPortIt = std::find_if(mixPortIt, mixPorts.end(), pred); in findMixPorts()
487 if (mixPortIt == mixPorts.end()) break; in findMixPorts()
488 result.push_back(*mixPortIt++); in findMixPorts()