Searched refs:DrmDeathRecipient (Results 1 - 15 of 15) sorted by relevance
/foundation/multimedia/drm_framework/services/drm_service/ipc/ |
H A D | drm_death_recipient.h | 24 class DrmDeathRecipient : public IRemoteObject::DeathRecipient, public NoCopyable {
class 26 explicit DrmDeathRecipient(pid_t pid) : pid_(pid) {}
in DrmDeathRecipient() function in OHOS::DrmStandard::DrmDeathRecipient 27 virtual ~DrmDeathRecipient() = default;
|
/foundation/multimedia/drm_framework/services/drm_service/server/include/ |
H A D | mediakeysystemfactory_service_stub.h | 43 std::map<pid_t, sptr<DrmDeathRecipient>> deathRecipientMap_;
|
H A D | mediakeysystem_service_stub.h | 41 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
H A D | media_decrypt_module_service_stub.h | 43 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
H A D | key_session_service_stub.h | 40 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
/foundation/multimedia/drm_framework/interfaces/inner_api/native/drm/ |
H A D | media_key_system_factory_impl.h | 52 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
H A D | key_session_impl.h | 81 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
H A D | media_key_system_impl.h | 76 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
|
/foundation/multimedia/drm_framework/services/drm_service/server/src/ |
H A D | mediakeysystemfactory_service_stub.cpp | 72 sptr<DrmDeathRecipient> deathRecipient = new (std::nothrow) DrmDeathRecipient(pid);
in SetListenerObject() 73 DRM_CHECK_AND_RETURN_RET_LOG(deathRecipient != nullptr, DRM_MEMORY_ERROR, "failed to new DrmDeathRecipient");
in SetListenerObject()
|
H A D | media_decrypt_module_service_stub.cpp | 62 deathRecipient_ = new (std::nothrow) DrmDeathRecipient(pid);
in SetListenerObject() 63 DRM_CHECK_AND_RETURN_RET_LOG(deathRecipient_ != nullptr, DRM_MEMORY_ERROR, "failed to new DrmDeathRecipient");
in SetListenerObject()
|
H A D | mediakeysystem_service_stub.cpp | 108 sptr<DrmDeathRecipient> deathRecipient_ = nullptr;
in ~MediaKeySystemServiceStub() 396 deathRecipient_ = new (std::nothrow) DrmDeathRecipient(pid);
in SetListenerObject() 397 DRM_CHECK_AND_RETURN_RET_LOG(deathRecipient_ != nullptr, DRM_MEMORY_ERROR, "failed to new DrmDeathRecipient");
in SetListenerObject()
|
H A D | key_session_service_stub.cpp | 360 deathRecipient_ = new (std::nothrow) DrmDeathRecipient(pid);
361 DRM_CHECK_AND_RETURN_RET_LOG(deathRecipient_ != nullptr, DRM_MEMORY_ERROR, "failed to new DrmDeathRecipient");
|
/foundation/multimedia/drm_framework/frameworks/native/drm/ |
H A D | media_key_system_factory_impl.cpp | 63 sptr<DrmDeathRecipient> deathRecipient = new (std::nothrow) DrmDeathRecipient(pid);
in GetServiceProxy() 65 "failed to new DrmDeathRecipient!");
in GetServiceProxy() 70 DRM_CHECK_AND_RETURN_RET_LOG(result, nullptr, "failed to new DrmDeathRecipient!");
in GetServiceProxy()
|
H A D | media_key_system_impl.cpp | 31 deathRecipient_ = new(std::nothrow) DrmDeathRecipient(pid);
in MediaKeySystemImpl() 32 DRM_CHECK_AND_RETURN_LOG(deathRecipient_ != nullptr, "failed to new DrmDeathRecipient.");
in MediaKeySystemImpl()
|
H A D | key_session_impl.cpp | 32 deathRecipient_ = new(std::nothrow) DrmDeathRecipient(pid);
in MediaKeySessionImpl() 33 DRM_CHECK_AND_RETURN_LOG(deathRecipient_ != nullptr, "failed to new DrmDeathRecipient.");
in MediaKeySessionImpl()
|
Completed in 6 milliseconds