/ohos5.0/foundation/multimedia/drm_framework/frameworks/native/drm/ |
H A D | media_key_system_factory_impl.cpp | 137 bool isSurpported = false; in IsMediaKeySystemSupported() local 139 … DRM_CHECK_AND_RETURN_RET_LOG(serviceProxy != nullptr, isSurpported, "service proxy is nullptr!"); in IsMediaKeySystemSupported() 140 ret = serviceProxy->IsMediaKeySystemSupported(name, &isSurpported); in IsMediaKeySystemSupported() 144 return isSurpported; in IsMediaKeySystemSupported() 151 bool isSurpported = false; in IsMediaKeySystemSupported() local 154 … DRM_CHECK_AND_RETURN_RET_LOG(serviceProxy != nullptr, isSurpported, "service proxy is nullptr!"); in IsMediaKeySystemSupported() 155 ret = serviceProxy->IsMediaKeySystemSupported(name, mimeType, &isSurpported); in IsMediaKeySystemSupported() 159 return isSurpported; in IsMediaKeySystemSupported() 167 bool isSurpported = false; in IsMediaKeySystemSupported() local 171 ret = serviceProxy->IsMediaKeySystemSupported(uuid, mimeType, securityLevel, &isSurpported); in IsMediaKeySystemSupported() [all …]
|
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/server/src/ |
H A D | drm_host_manager.cpp | 598 } else if (*isSurpported) { in GetServices() 624 int32_t ret = GetServices(name, isSurpported, drmHostServieProxys); in IsMediaKeySystemSupported() 626 *isSurpported = false; in IsMediaKeySystemSupported() 643 int32_t ret = GetServices(name, isSurpported, drmHostServieProxys); in IsMediaKeySystemSupported() 645 *isSurpported = false; in IsMediaKeySystemSupported() 650 *isSurpported = false; in IsMediaKeySystemSupported() 674 int32_t ret = GetServices(name, isSurpported, drmHostServieProxys); in IsMediaKeySystemSupported() 676 *isSurpported = false; in IsMediaKeySystemSupported() 681 *isSurpported = false; in IsMediaKeySystemSupported() 713 bool isSurpported = false; in CreateMediaKeySystem() local [all …]
|
H A D | mediakeysystemfactory_service_stub.cpp | 107 bool isSurpported = false; in ProcessMediaKeySystemSupportedRequest() local 113 int32_t ret = stub->IsMediaKeySystemSupported(name, &isSurpported); in ProcessMediaKeySystemSupportedRequest() 115 DRM_CHECK_AND_RETURN_RET_LOG(reply.WriteBool(isSurpported), IPC_STUB_WRITE_PARCEL_ERR, in ProcessMediaKeySystemSupportedRequest() 121 int32_t ret = stub->IsMediaKeySystemSupported(name, mimeType, &isSurpported); in ProcessMediaKeySystemSupportedRequest() 123 DRM_CHECK_AND_RETURN_RET_LOG(reply.WriteBool(isSurpported), IPC_STUB_WRITE_PARCEL_ERR, in ProcessMediaKeySystemSupportedRequest() 130 int32_t ret = stub->IsMediaKeySystemSupported(name, mimeType, securityLevel, &isSurpported); in ProcessMediaKeySystemSupportedRequest() 132 DRM_CHECK_AND_RETURN_RET_LOG(reply.WriteBool(isSurpported), IPC_STUB_WRITE_PARCEL_ERR, in ProcessMediaKeySystemSupportedRequest()
|
H A D | mediakeysystemfactory_service.cpp | 236 …32_t MediaKeySystemFactoryService::IsMediaKeySystemSupported(std::string &name, bool *isSurpported) in IsMediaKeySystemSupported() argument 240 int32_t ret = drmHostManager_->IsMediaKeySystemSupported(name, isSurpported); in IsMediaKeySystemSupported() 249 bool *isSurpported) in IsMediaKeySystemSupported() argument 253 int32_t ret = drmHostManager_->IsMediaKeySystemSupported(name, mimeType, isSurpported); in IsMediaKeySystemSupported() 262 int32_t securityLevel, bool *isSurpported) in IsMediaKeySystemSupported() argument 266 …32_t ret = drmHostManager_->IsMediaKeySystemSupported(name, mimeType, securityLevel, isSurpported); in IsMediaKeySystemSupported()
|
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/client/src/ |
H A D | mediakeysystemfactory_service_proxy.cpp | 51 …MediaKeySystemFactoryServiceProxy::IsMediaKeySystemSupported(std::string &uuid, bool *isSurpported) in IsMediaKeySystemSupported() argument 80 *isSurpported = reply.ReadBool(); in IsMediaKeySystemSupported() 85 bool *isSurpported) in IsMediaKeySystemSupported() argument 118 *isSurpported = reply.ReadBool(); in IsMediaKeySystemSupported() 123 int32_t securityLevel, bool *isSurpported) in IsMediaKeySystemSupported() argument 161 *isSurpported = reply.ReadBool(); in IsMediaKeySystemSupported()
|
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/client/include/ |
H A D | mediakeysystemfactory_service_proxy.h | 29 int32_t IsMediaKeySystemSupported(std::string &name, bool *isSurpported) override; 30 …int32_t IsMediaKeySystemSupported(std::string &name, std::string &mimeType, bool *isSurpported) ov… 32 bool *isSurpported) override;
|
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/ipc/ |
H A D | i_mediakeysystemfactory_service.h | 39 virtual int32_t IsMediaKeySystemSupported(std::string &name, bool *isSurpported) = 0; 40 …nt32_t IsMediaKeySystemSupported(std::string &name, std::string &mimeType, bool *isSurpported) = 0; 42 bool *isSurpported) = 0;
|
/ohos5.0/foundation/multimedia/drm_framework/services/drm_service/server/include/ |
H A D | mediakeysystemfactory_service.h | 56 int32_t IsMediaKeySystemSupported(std::string &name, bool *isSurpported) override; 57 …int32_t IsMediaKeySystemSupported(std::string &name, std::string &mimeType, bool *isSurpported) ov… 59 bool *isSurpported) override;
|
H A D | drm_host_manager.h | 100 int32_t IsMediaKeySystemSupported(std::string &name, bool *isSurpported); 101 int32_t IsMediaKeySystemSupported(std::string &name, std::string &mimeType, bool *isSurpported); 103 bool *isSurpported); 122 …int32_t GetServices(std::string &name, bool *isSurpported, sptr<IMediaKeySystemFactory> &drmHostSe…
|