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

  /frameworks/base/drm/libdrmframework/include/
DrmManagerService.h 101 DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
103 DecryptHandle* openDecryptSession(int uniqueId, const char* uri);
IDrmManagerService.h 142 virtual DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length) = 0;
144 virtual DecryptHandle* openDecryptSession(int uniqueId, const char* uri) = 0;
225 virtual DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
227 virtual DecryptHandle* openDecryptSession(int uniqueId, const char* uri);
DrmManager.h 114 DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
116 DecryptHandle* openDecryptSession(int uniqueId, const char* uri);
DrmManagerClientImpl.h 306 sp<DecryptHandle> openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
316 sp<DecryptHandle> openDecryptSession(int uniqueId, const char* uri);
  /frameworks/base/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 326 virtual status_t openDecryptSession(
338 virtual status_t openDecryptSession(
DrmEngineBase.h 82 status_t openDecryptSession(
85 status_t openDecryptSession(
  /frameworks/base/include/drm/
DrmManagerClient.h 72 sp<DecryptHandle> openDecryptSession(int fd, off64_t offset, off64_t length);
81 sp<DecryptHandle> openDecryptSession(const char* uri);
  /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");
  /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/media/libstagefright/
FileSource.cpp 140 mDecryptHandle = mDrmManagerClient->openDecryptSession(
  /frameworks/base/media/libstagefright/chromium_http/
ChromiumHTTPDataSource.cpp 277 mDecryptHandle = mDrmManagerClient->openDecryptSession(

Completed in 233 milliseconds