Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/call_manager/services/distributed_call/src/
H A Ddistributed_call_manager.cpp250 std::string addr = connectedAudioDevice_.address; in GetConnectedDCallDeviceAddr()
257 AudioDeviceType type = connectedAudioDevice_.deviceType; in GetConnectedDCallDeviceType()
266 devId = GetDevIdFromAudioDevice(connectedAudioDevice_); in GetConnectedDCallDeviceId()
274 device.deviceType = connectedAudioDevice_.deviceType; in GetConnectedDCallDevice()
275 …if (memcpy_s(device.address, kMaxAddressLen, connectedAudioDevice_.address, kMaxAddressLen) != EOK… in GetConnectedDCallDevice()
283 connectedAudioDevice_.deviceType = device.deviceType; in SetConnectedDCallDevice()
284 …if (memcpy_s(connectedAudioDevice_.address, kMaxAddressLen, device.address, kMaxAddressLen) != EOK… in SetConnectedDCallDevice()
292 connectedAudioDevice_.deviceType = AudioDeviceType::DEVICE_UNKNOWN; in ClearConnectedDCallDevice()
293 if (memset_s(connectedAudioDevice_.address, kMaxAddressLen, 0, kMaxAddressLen) != EOK) { in ClearConnectedDCallDevice()
/ohos5.0/base/telephony/call_manager/services/distributed_call/include/
H A Ddistributed_call_manager.h87 AudioDevice connectedAudioDevice_; variable