/foundation/multimedia/drm_framework/services/drm_service/server/src/ |
H A D | mediakeysystem_service_stub.cpp | 39 static int32_t ProcessKeySystemResponse(MediaKeySystemServiceStub *stub, MessageParcel &data, MessageParcel &reply,
84 {MEDIA_KEY_SYSTEM_PROCESS_KEYSYSTEM_RESPONSE, ProcessKeySystemResponse},
157 static int32_t ProcessKeySystemResponse(MediaKeySystemServiceStub *stub, MessageParcel &data, MessageParcel &reply,
in ProcessKeySystemResponse() function 160 DRM_INFO_LOG("ProcessKeySystemResponse enter.");
in ProcessKeySystemResponse() 173 int32_t ret = stub->ProcessKeySystemResponse(response);
in ProcessKeySystemResponse() 174 DRM_CHECK_AND_RETURN_RET_LOG(ret == DRM_OK, ret, "ProcessKeySystemResponse faild, errCode:%{public}d", ret);
in ProcessKeySystemResponse()
|
H A D | mediakeysystem_service.cpp | 133 int32_t MediaKeySystemService::ProcessKeySystemResponse(const std::vector<uint8_t> &response)
in ProcessKeySystemResponse() function in OHOS::DrmStandard::MediaKeySystemService 135 DrmTrace trace("MediaKeySystemService::ProcessKeySystemResponse");
in ProcessKeySystemResponse() 136 DRM_INFO_LOG("ProcessKeySystemResponse enter.");
in ProcessKeySystemResponse() 142 ret = hdiKeySystem_->ProcessKeySystemResponse(response);
in ProcessKeySystemResponse() 145 DRM_ERR_LOG("ProcessKeySystemResponse failed.");
in ProcessKeySystemResponse() 147 ReportFaultEvent(ret, "ProcessKeySystemResponse failed", responseString);
in ProcessKeySystemResponse()
|
/foundation/multimedia/drm_framework/services/drm_service/client/include/ |
H A D | mediakeysystem_service_proxy.h | 43 int32_t ProcessKeySystemResponse(const std::vector<uint8_t> &response) override;
|
/foundation/multimedia/drm_framework/interfaces/inner_api/native/drm/ |
H A D | media_key_system_impl.h | 57 int32_t ProcessKeySystemResponse(const std::vector<uint8_t> &response);
|
/foundation/multimedia/drm_framework/interfaces/kits/js/drm_napi/include/ |
H A D | media_key_system_napi.h | 64 static napi_value ProcessKeySystemResponse(napi_env env, napi_callback_info info);
|
/foundation/multimedia/drm_framework/services/drm_service/ipc/ |
H A D | i_mediakeysystem_service.h | 65 virtual int32_t ProcessKeySystemResponse(const std::vector<uint8_t> &response) = 0;
|
/foundation/multimedia/drm_framework/services/drm_service/server/include/ |
H A D | mediakeysystem_service.h | 63 int32_t ProcessKeySystemResponse(const std::vector<uint8_t> &response) override;
|
/foundation/multimedia/drm_framework/frameworks/native/drm/ |
H A D | media_key_system_impl.cpp | 123 int32_t MediaKeySystemImpl::ProcessKeySystemResponse(const std::vector<uint8_t> &response)
in ProcessKeySystemResponse() function in OHOS::DrmStandard::MediaKeySystemImpl 125 DrmTrace trace("MediaKeySystemImpl::ProcessKeySystemResponse");
in ProcessKeySystemResponse() 126 DRM_INFO_LOG("ProcessKeySystemResponse enter.");
in ProcessKeySystemResponse() 131 DRM_ERR_LOG("ProcessKeySystemResponse serviceProxy_ is null");
in ProcessKeySystemResponse() 134 ret = serviceProxy_->ProcessKeySystemResponse(response);
in ProcessKeySystemResponse() 136 DRM_ERR_LOG("ProcessKeySystemResponse failed, ret: %{public}d", ret);
in ProcessKeySystemResponse()
|
/foundation/multimedia/drm_framework/frameworks/native/test/fuzztest/drmservice_fuzzer/ |
H A D | drmservice_fuzzer.h | 246 int32_t ProcessKeySystemResponse(const std::vector<uint8_t> &response) override
|
/foundation/multimedia/drm_framework/services/drm_service/client/src/ |
H A D | mediakeysystem_service_proxy.cpp | 95 int32_t MediaKeySystemServiceProxy::ProcessKeySystemResponse(const std::vector<uint8_t> &response)
in ProcessKeySystemResponse() function in OHOS::DrmStandard::MediaKeySystemServiceProxy 97 DRM_INFO_LOG("ProcessKeySystemResponse enter.");
in ProcessKeySystemResponse() 103 DRM_ERR_LOG("ProcessKeySystemResponse Write interface token failed.");
in ProcessKeySystemResponse() 108 DRM_ERR_LOG("ProcessKeySystemResponse Write response size failed.");
in ProcessKeySystemResponse() 122 DRM_ERR_LOG("ProcessKeySystemResponse failed, errcode: %{public}d", ret);
in ProcessKeySystemResponse()
|
/foundation/multimedia/drm_framework/frameworks/js/drm_napi/ |
H A D | media_key_system_napi.cpp | 60 DECLARE_NAPI_FUNCTION("processKeySystemResponse", ProcessKeySystemResponse),
in Init() 674 napi_value MediaKeySystemNapi::ProcessKeySystemResponse(napi_env env, napi_callback_info info)
in ProcessKeySystemResponse() function in OHOS::DrmStandard::MediaKeySystemNapi 676 DRM_INFO_LOG("ProcessKeySystemResponse enter.");
in ProcessKeySystemResponse() 679 DrmTrace trace("MediaKeySystemNapi::ProcessKeySystemResponse");
in ProcessKeySystemResponse() 682 DRM_ERR_LOG("ProcessKeySystemResponse failed.");
in ProcessKeySystemResponse() 690 NAPI_CHECK_STATUS_RETURN_VOID(context, "ProcessKeySystemResponse failed.", DRM_INVALID_PARAM);
in ProcessKeySystemResponse() 702 context->intValue = napiMediaKeySystem->mediaKeySystemImpl_->ProcessKeySystemResponse(context->response);
in ProcessKeySystemResponse() 710 return NapiAsyncWork::Enqueue(env, context, "ProcessKeySystemResponse", executor, complete);
in ProcessKeySystemResponse()
|
/foundation/multimedia/drm_framework/frameworks/c/drm_capi/ |
H A D | native_mediakeysystem.cpp | 403 "mediaKeySystemImpl::ProcessKeySystemResponse faild!"); in OH_MediaKeySystem_ProcessKeySystemResponse() 404 result = systemObject->systemImpl_->ProcessKeySystemResponse(keySystemResponse); in OH_MediaKeySystem_ProcessKeySystemResponse()
|