Searched refs:openDecryptSession (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/drm/libdrmframework/include/
H A DDrmManagerService.h101 DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
103 DecryptHandle* openDecryptSession(int uniqueId, const char* uri);
H A DDrmManager.h114 DecryptHandle* openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
116 DecryptHandle* openDecryptSession(int uniqueId, const char* uri);
H A DDrmManagerClientImpl.h306 sp<DecryptHandle> openDecryptSession(int uniqueId, int fd, off64_t offset, off64_t length);
316 sp<DecryptHandle> openDecryptSession(int uniqueId, const char* uri);
H A DIDrmManagerService.h142 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);
/frameworks/base/include/drm/
H A DDrmManagerClient.h72 sp<DecryptHandle> openDecryptSession(int fd, off64_t offset, off64_t length);
81 sp<DecryptHandle> openDecryptSession(const char* 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");
/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/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/plugins/common/include/
H A DIDrmEngine.h326 virtual status_t openDecryptSession(
338 virtual status_t openDecryptSession(
H A DDrmEngineBase.h82 status_t openDecryptSession(
85 status_t openDecryptSession(
/frameworks/base/media/libstagefright/
H A DFileSource.cpp140 mDecryptHandle = mDrmManagerClient->openDecryptSession(
/frameworks/base/media/libstagefright/chromium_http/
H A DChromiumHTTPDataSource.cpp277 mDecryptHandle = mDrmManagerClient->openDecryptSession(

Completed in 171 milliseconds