Home
last modified time | relevance | path

Searched refs:licenseIdBuf (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/server/src/
H A Dkey_session_service_stub.cpp207 … const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(data.ReadUnpadBuffer(licenseIdSize)); in ProcessOfflineReleaseRequest() local
208 if (licenseIdBuf == nullptr) { in ProcessOfflineReleaseRequest()
212 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessOfflineReleaseRequest()
240 const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(data.ReadUnpadBuffer(licenseIdSize)); in ProcessOfflineReleaseResponse() local
241 if (licenseIdBuf == nullptr) { in ProcessOfflineReleaseResponse()
245 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessOfflineReleaseResponse()
288 … const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(data.ReadUnpadBuffer(licenseIdSize)); in ProcessRestoreOfflineMediaKey() local
289 if (licenseIdBuf == nullptr) { in ProcessRestoreOfflineMediaKey()
293 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessRestoreOfflineMediaKey()
H A Dmediakeysystem_service_stub.cpp339 … const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(data.ReadUnpadBuffer(licenseIdSize)); in ProcessGetOfflineMediaKeyStatus() local
340 if (licenseIdBuf == nullptr) { in ProcessGetOfflineMediaKeyStatus()
344 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessGetOfflineMediaKeyStatus()
365 … const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(data.ReadUnpadBuffer(licenseIdSize)); in ProcessRemoveOfflineMediaKey() local
366 if (licenseIdBuf == nullptr) { in ProcessRemoveOfflineMediaKey()
370 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessRemoveOfflineMediaKey()
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/client/src/
H A Dkey_session_service_proxy.cpp197 … const uint8_t *licenseIdBuf = static_cast<const uint8_t *>(reply.ReadUnpadBuffer(licenseIdSize)); in ProcessMediaKeyResponse() local
198 if (licenseIdBuf == nullptr) { in ProcessMediaKeyResponse()
202 licenseId.assign(licenseIdBuf, licenseIdBuf + licenseIdSize); in ProcessMediaKeyResponse()
H A Dmediakeysystem_service_proxy.cpp395 const uint8_t *licenseIdBuf = in GetOfflineMediaKeyIds() local
397 if (licenseIdBuf == nullptr) { in GetOfflineMediaKeyIds()
401 std::copy(licenseIdBuf, licenseIdBuf + licenseIdSize, licenseIds[i].begin()); in GetOfflineMediaKeyIds()