Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/
H A Daudio_device_manager.cpp1204 auto it = std::find_if(callDefaultOutputDevices_.begin(), callDefaultOutputDevices_.end(), in SetDefaultOutputDevice()
1208 if (it != callDefaultOutputDevices_.end()) { in SetDefaultOutputDevice()
1209 callDefaultOutputDevices_.erase(it); in SetDefaultOutputDevice()
1250 auto it = std::find_if(callDefaultOutputDevices_.begin(), callDefaultOutputDevices_.end(), in UpdateDefaultOutputDeviceWhenStarting()
1254 if (it != callDefaultOutputDevices_.end()) { in UpdateDefaultOutputDeviceWhenStarting()
1255 callDefaultOutputDevices_.erase(it); in UpdateDefaultOutputDeviceWhenStarting()
1295 auto it = std::find_if(callDefaultOutputDevices_.begin(), callDefaultOutputDevices_.end(), in UpdateDefaultOutputDeviceWhenStopping()
1299 if (it == callDefaultOutputDevices_.end()) { in UpdateDefaultOutputDeviceWhenStopping()
1302 callDefaultOutputDevices_.erase(it); in UpdateDefaultOutputDeviceWhenStopping()
1304 if (callDefaultOutputDevices_.empty()) { in UpdateDefaultOutputDeviceWhenStopping()
[all …]
/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/
H A Daudio_device_manager.h176 vector<std::pair<uint32_t, DeviceType>> callDefaultOutputDevices_; variable