Home
last modified time | relevance | path

Searched refs:supportedDrmCapability (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/multimedia/av_session/frameworks/common/src/
H A Davsession_descriptor.cpp63 for (auto supportedDrmCapability : deviceInfo.supportedDrmCapabilities_) { in WriteToParcel() local
108 std::string supportedDrmCapability; in CheckBeforReadFromParcel() local
109 CHECK_AND_RETURN_RET_LOG(in.ReadString(supportedDrmCapability), false, in CheckBeforReadFromParcel()
111 supportedDrmCapabilities.emplace_back(supportedDrmCapability); in CheckBeforReadFromParcel()
162 for (auto supportedDrmCapability : supportedDrmCapabilities_) { in WriteToParcel() local
163 CHECK_AND_RETURN_RET_LOG(out.WriteString(supportedDrmCapability), false, in WriteToParcel()
193 std::string supportedDrmCapability; in ReadFromParcel() local
194 CHECK_AND_RETURN_RET_LOG(in.ReadString(supportedDrmCapability), false, in ReadFromParcel()
196 supportedDrmCapabilities.emplace_back(supportedDrmCapability); in ReadFromParcel()
262 std::string supportedDrmCapability; in ReadFromParcel() local
[all …]
/ohos5.0/foundation/multimedia/av_session/services/session/ipc/stub/
H A Davcontroller_callback_stub.cpp187 std::string supportedDrmCapability; in HandleOnOutputDeviceChange() local
188 CHECK_AND_RETURN_RET_LOG(data.ReadString(supportedDrmCapability), false, in HandleOnOutputDeviceChange()
190 supportedDrmCapabilities.emplace_back(supportedDrmCapability); in HandleOnOutputDeviceChange()
H A Davsession_callback_stub.cpp204 std::string supportedDrmCapability; in HandleOnOutputDeviceChange() local
205 CHECK_AND_RETURN_RET_LOG(data.ReadString(supportedDrmCapability), false, in HandleOnOutputDeviceChange()
207 supportedDrmCapabilities.emplace_back(supportedDrmCapability); in HandleOnOutputDeviceChange()
H A Davsession_service_stub.cpp721 std::string supportedDrmCapability; in CheckBeforeHandleStartCast() local
722 CHECK_AND_RETURN_RET_LOG(data.ReadString(supportedDrmCapability), false, in CheckBeforeHandleStartCast()
724 supportedDrmCapabilities.emplace_back(supportedDrmCapability); in CheckBeforeHandleStartCast()
/ohos5.0/foundation/multimedia/av_session/services/session/ipc/proxy/
H A Davcontroller_callback_proxy.cpp228 for (auto supportedDrmCapability : deviceInfo.supportedDrmCapabilities_) { in OnOutputDeviceChange() local
229 CHECK_AND_RETURN_LOG(parcel.WriteString(supportedDrmCapability), in OnOutputDeviceChange()
H A Davsession_callback_proxy.cpp250 for (auto supportedDrmCapability : deviceInfo.supportedDrmCapabilities_) { in OnOutputDeviceChange() local
251 CHECK_AND_RETURN_LOG(data.WriteString(supportedDrmCapability), in OnOutputDeviceChange()
H A Davsession_service_proxy.cpp670 for (auto supportedDrmCapability : deviceInfo.supportedDrmCapabilities_) { in StartCast() local
671 CHECK_AND_RETURN_RET_LOG(data.WriteString(supportedDrmCapability), ERR_MARSHALLING, in StartCast()