Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/
H A Daudio_policy_service.cpp7203 … auto iter = std::find_if(connectedMicrophones_.begin(), connectedMicrophones_.end(), isPresent); in AddMicrophoneDescriptor()
7204 if (iter == connectedMicrophones_.end()) { in AddMicrophoneDescriptor()
7208 connectedMicrophones_.push_back(micDesc); in AddMicrophoneDescriptor()
7220 auto iter = std::find_if(connectedMicrophones_.begin(), connectedMicrophones_.end(), isPresent); in RemoveMicrophoneDescriptor()
7221 if (iter != connectedMicrophones_.end()) { in RemoveMicrophoneDescriptor()
7222 connectedMicrophones_.erase(iter); in RemoveMicrophoneDescriptor()
7237 auto itr = std::find_if(connectedMicrophones_.begin(), connectedMicrophones_.end(), isPresent); in AddAudioCapturerMicrophoneDescriptor()
7238 if (itr != connectedMicrophones_.end()) { in AddAudioCapturerMicrophoneDescriptor()
7263 return connectedMicrophones_; in GetAvailableMicrophones()
7273 auto itr = std::find_if(connectedMicrophones_.begin(), connectedMicrophones_.end(), isPresent); in UpdateAudioCapturerMicrophoneDescriptor()
[all …]
/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/
H A Daudio_policy_service.h1133 std::vector<sptr<MicrophoneDescriptor>> connectedMicrophones_; variable