Lines Matching refs:singlePort
198 bool singlePort) const { in getNonBlockingMixPorts()
199 return findMixPorts(false /*isInput*/, connectedOnly, singlePort, [&](const AudioPort& port) { in getNonBlockingMixPorts()
205 std::vector<AudioPort> ModuleConfig::getOffloadMixPorts(bool connectedOnly, bool singlePort) const { in getOffloadMixPorts()
206 return findMixPorts(false /*isInput*/, connectedOnly, singlePort, [&](const AudioPort& port) { in getOffloadMixPorts()
212 std::vector<AudioPort> ModuleConfig::getPrimaryMixPorts(bool connectedOnly, bool singlePort) const { in getPrimaryMixPorts()
213 return findMixPorts(false /*isInput*/, connectedOnly, singlePort, [&](const AudioPort& port) { in getPrimaryMixPorts()
219 std::vector<AudioPort> ModuleConfig::getMmapOutMixPorts(bool connectedOnly, bool singlePort) const { in getMmapOutMixPorts()
220 return findMixPorts(false /*isInput*/, connectedOnly, singlePort, [&](const AudioPort& port) { in getMmapOutMixPorts()
226 std::vector<AudioPort> ModuleConfig::getMmapInMixPorts(bool connectedOnly, bool singlePort) const { in getMmapInMixPorts()
227 return findMixPorts(true /*isInput*/, connectedOnly, singlePort, [&](const AudioPort& port) { in getMmapInMixPorts()
233 std::vector<AudioPort> ModuleConfig::getRemoteSubmixPorts(bool isInput, bool singlePort) const { in getRemoteSubmixPorts()
237 if (singlePort) { in getRemoteSubmixPorts()
481 bool isInput, bool connectedOnly, bool singlePort, in findMixPorts() argument
489 if (singlePort) break; in findMixPorts()