Searched defs:openDecryptSession (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/drm/common/
H A DDrmEngineBase.cpp122 status_t DrmEngineBase::openDecryptSession( function in class:DrmEngineBase
127 status_t DrmEngineBase::openDecryptSession( function in class:DrmEngineBase
H A DIDrmManagerService.cpp602 DecryptHandle* BpDrmManagerService::openDecryptSession( function in class:BpDrmManagerService
604 LOGV("Entering BpDrmManagerService::openDecryptSession");
623 DecryptHandle* BpDrmManagerService::openDecryptSession(int uniqueId, const char* uri) { function in class:BpDrmManagerService
624 LOGV("Entering BpDrmManagerService::openDecryptSession");
1269 = openDecryptSession(uniqueId, fd, offset, length);
1287 DecryptHandle* handle = openDecryptSession(uniqueId, uri.string());
/frameworks/base/drm/libdrmframework/
H A DDrmManagerClient.cpp119 sp<DecryptHandle> DrmManagerClient::openDecryptSession(int fd, off64_t offset, off64_t length) { function in class:DrmManagerClient
120 return mDrmManagerClientImpl->openDecryptSession(mUniqueId, fd, offset, length);
123 sp<DecryptHandle> DrmManagerClient::openDecryptSession(const char* uri) { function in class:DrmManagerClient
124 return mDrmManagerClientImpl->openDecryptSession(mUniqueId, uri);
H A DDrmManagerClientImpl.cpp257 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession( function in class:DrmManagerClientImpl
259 return getDrmManagerService()->openDecryptSession(uniqueId, fd, offset, length);
262 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession( function in class:DrmManagerClientImpl
266 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri);
/frameworks/base/drm/drmserver/
H A DDrmManagerService.cpp210 DecryptHandle* DrmManagerService::openDecryptSession( function in class:DrmManagerService
212 LOGV("Entering DrmManagerService::openDecryptSession");
214 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length);
220 DecryptHandle* DrmManagerService::openDecryptSession( function in class:DrmManagerService
222 LOGV("Entering DrmManagerService::openDecryptSession with uri");
224 return mDrmManager->openDecryptSession(uniqueId, uri);
H A DDrmManager.cpp429 DecryptHandle* DrmManager::openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length) { function in class:DrmManager
441 result = rDrmEngine.openDecryptSession(uniqueId, handle, fd, offset, length);
456 DecryptHandle* DrmManager::openDecryptSession(int uniqueId, const char* uri) { function in class:DrmManager
468 result = rDrmEngine.openDecryptSession(uniqueId, handle, uri);
479 LOGV("DrmManager::openDecryptSession: no capable plug-in found");

Completed in 76 milliseconds