Home
last modified time | relevance | path

Searched refs:keySessionProxy (Results 1 - 25 of 30) sorted by relevance

12

/foundation/multimedia/av_codec/frameworks/native/avcodec/
H A Davcodec_video_decoder_impl.cpp234 int32_t AVCodecVideoDecoderImpl::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
240 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, in SetDecryptConfig()
241 AVCS_ERR_INVALID_OPERATION, "keySessionProxy is nullptr"); in SetDecryptConfig()
244 return codecClient_->SetDecryptConfig(keySessionProxy, svpFlag); in SetDecryptConfig()
H A Davcodec_video_decoder_impl.h46 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
/foundation/multimedia/player_framework/services/services/player/ipc/
H A Di_standard_player_service.h104 virtual int32_t SetDecryptConfig(const sptr<OHOS::DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
107 (void)keySessionProxy; in SetDecryptConfig()
H A Dplayer_service_proxy.h74 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
H A Dplayer_service_proxy.cpp735 int32_t PlayerServiceProxy::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
745 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_INVALID_OPERATION, "keySessionProxy is nullptr"); in SetDecryptConfig()
746 sptr<IRemoteObject> object = keySessionProxy->AsObject(); in SetDecryptConfig()
747 CHECK_AND_RETURN_RET_LOG(object != nullptr, MSERR_INVALID_OPERATION, "keySessionProxy object is nullptr"); in SetDecryptConfig()
764 (void)keySessionProxy; in SetDecryptConfig()
H A Dplayer_service_stub.h87 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
H A Dplayer_service_stub.cpp498 int32_t PlayerServiceStub::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
505 return playerServer_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig()
507 (void)keySessionProxy; in SetDecryptConfig()
/foundation/multimedia/drm_framework/frameworks/native/drm/
H A Dmedia_key_system_impl.cpp222 sptr<IMediaKeySessionService> keySessionProxy = nullptr; in CreateMediaKeySession() local
230 ret = serviceProxy_->CreateMediaKeySession(securityLevel, keySessionProxy); in CreateMediaKeySession()
232 if (keySessionProxy != nullptr) { in CreateMediaKeySession()
233 localMediaKeySessionImpl = new (std::nothrow) MediaKeySessionImpl(keySessionProxy); in CreateMediaKeySession()
/foundation/multimedia/player_framework/frameworks/native/player/
H A Dplayer_impl.cpp462 int32_t PlayerImpl::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, bool svp) in SetDecryptConfig() argument
466 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_INVALID_VAL, "keysessionproxy is nullptr"); in SetDecryptConfig()
468 MEDIA_LOGD("And it's count is: %{public}d in PlayerImpl", keySessionProxy->GetSptrRefCount()); in SetDecryptConfig()
469 return playerService_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig()
471 (void)keySessionProxy; in SetDecryptConfig()
H A Dplayer_impl.h74 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_player_engine.h106 virtual int32_t SetDecryptConfig(const sptr<OHOS::DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
109 (void)keySessionProxy; in SetDecryptConfig()
/foundation/multimedia/drm_framework/services/drm_service/client/include/
H A Dmediakeysystem_service_proxy.h38 sptr<IMediaKeySessionService> &keySessionProxy) override;
/foundation/multimedia/player_framework/services/services/player/client/
H A Dplayer_client.cpp407 int32_t PlayerClient::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, bool svp) in SetDecryptConfig() argument
413 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_NO_MEMORY, "keySessionProxy is nullptr.."); in SetDecryptConfig()
414 return playerProxy_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig()
416 (void)keySessionProxy; in SetDecryptConfig()
H A Dplayer_client.h64 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
/foundation/multimedia/av_codec/services/media_engine/filters/
H A Daudio_decoder_filter.cpp357 Status AudioDecoderFilter::SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptionConfig() argument
361 if (keySessionProxy == nullptr) { in SetDecryptionConfig()
362 MEDIA_LOG_E_SHORT("SetDecryptionConfig keySessionProxy is nullptr."); in SetDecryptionConfig()
370 keySessionServiceProxy_ = keySessionProxy; in SetDecryptionConfig()
H A Ddecoder_surface_filter.cpp814 Status DecoderSurfaceFilter::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
818 if (keySessionProxy == nullptr) { in SetDecryptConfig()
819 MEDIA_LOG_E("SetDecryptConfig keySessionProxy is nullptr."); in SetDecryptConfig()
825 keySessionServiceProxy_ = keySessionProxy; in SetDecryptConfig()
/foundation/multimedia/drm_framework/services/drm_service/ipc/
H A Di_mediakeysystem_service.h71 sptr<IMediaKeySessionService> &keySessionProxy) = 0;
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Daudio_decoder_filter.h76 Status SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
H A Ddecoder_surface_filter.h83 Status SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
/foundation/multimedia/drm_framework/services/drm_service/server/include/
H A Dmediakeysystem_service.h61 sptr<IMediaKeySessionService> &keySessionProxy) override;
/foundation/multimedia/player_framework/services/include/
H A Di_player_service.h384 * @param keySessionProxy is the sptr will be setted to playerserver.
391 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
/foundation/multimedia/drm_framework/services/drm_service/server/src/
H A Dmediakeysystem_service.cpp231 sptr<IMediaKeySessionService> &keySessionProxy) in CreateMediaKeySession()
268 keySessionProxy = keySessionService; in CreateMediaKeySession()
230 CreateMediaKeySession(IMediaKeySessionService::ContentProtectionLevel securityLevel, sptr<IMediaKeySessionService> &keySessionProxy) CreateMediaKeySession() argument
/foundation/multimedia/drm_framework/services/drm_service/client/src/
H A Dmediakeysystem_service_proxy.cpp309 sptr<IMediaKeySessionService> &keySessionProxy)
333 keySessionProxy = iface_cast<IMediaKeySessionService>(remoteObject);
335 DRM_ERR_LOG("CreateMediaKeySession keySessionProxy is nullptr");
/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Dplayer.h768 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument
771 (void)keySessionProxy; in SetDecryptConfig()
/foundation/multimedia/player_framework/test/fuzztest/player_fuzztest/playerstub_fuzzer/
H A Dplayer_service_proxy_fuzzer.h190 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,

Completed in 18 milliseconds

12