HomeSort by relevance Sort by last modified time
    Searched defs:openDecryptSession (Results 1 - 6 of 6) sorted by null

  /frameworks/base/drm/libdrmframework/
DrmManagerClient.cpp 119 sp<DecryptHandle> DrmManagerClient::openDecryptSession(int fd, off64_t offset, off64_t length) {
120 return mDrmManagerClientImpl->openDecryptSession(mUniqueId, fd, offset, length);
123 sp<DecryptHandle> DrmManagerClient::openDecryptSession(const char* uri) {
124 return mDrmManagerClientImpl->openDecryptSession(mUniqueId, uri);
DrmManagerClientImpl.cpp 257 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession(
259 return getDrmManagerService()->openDecryptSession(uniqueId, fd, offset, length);
262 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession(
266 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri);
  /frameworks/base/drm/common/
DrmEngineBase.cpp 122 status_t DrmEngineBase::openDecryptSession(
127 status_t DrmEngineBase::openDecryptSession(
IDrmManagerService.cpp 602 DecryptHandle* BpDrmManagerService::openDecryptSession(
604 LOGV("Entering BpDrmManagerService::openDecryptSession");
623 DecryptHandle* BpDrmManagerService::openDecryptSession(int uniqueId, const char* uri) {
624 LOGV("Entering BpDrmManagerService::openDecryptSession");
    [all...]
  /frameworks/base/drm/drmserver/
DrmManagerService.cpp 210 DecryptHandle* DrmManagerService::openDecryptSession(
212 LOGV("Entering DrmManagerService::openDecryptSession");
214 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length);
220 DecryptHandle* DrmManagerService::openDecryptSession(
222 LOGV("Entering DrmManagerService::openDecryptSession with uri");
224 return mDrmManager->openDecryptSession(uniqueId, uri);
DrmManager.cpp 429 DecryptHandle* DrmManager::openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length) {
441 result = rDrmEngine.openDecryptSession(uniqueId, handle, fd, offset, length);
456 DecryptHandle* DrmManager::openDecryptSession(int uniqueId, const char* uri) {
468 result = rDrmEngine.openDecryptSession(uniqueId, handle, uri);
479 LOGV("DrmManager::openDecryptSession: no capable plug-in found");

Completed in 31 milliseconds