Home
last modified time | relevance | path

Searched refs:isSurpported (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/multimedia/drm_framework/frameworks/native/drm/
H A Dmedia_key_system_factory_impl.cpp137 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 Ddrm_host_manager.cpp598 } 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 Dmediakeysystemfactory_service_stub.cpp107 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 Dmediakeysystemfactory_service.cpp236 …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 Dmediakeysystemfactory_service_proxy.cpp51 …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 Dmediakeysystemfactory_service_proxy.h29 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 Di_mediakeysystemfactory_service.h39 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 Dmediakeysystemfactory_service.h56 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 Ddrm_host_manager.h100 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…