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

/frameworks/av/drm/common/
H A DDrmEngineBase.cpp122 status_t DrmEngineBase::openDecryptSession( function in class:DrmEngineBase
133 status_t DrmEngineBase::openDecryptSession( function in class:DrmEngineBase
142 status_t DrmEngineBase::openDecryptSession(int uniqueId, DecryptHandle* decryptHandle, function in class:DrmEngineBase
H A DIDrmManagerService.cpp613 DecryptHandle* BpDrmManagerService::openDecryptSession( function in class:BpDrmManagerService
615 ALOGV("Entering BpDrmManagerService::openDecryptSession");
639 DecryptHandle* BpDrmManagerService::openDecryptSession( function in class:BpDrmManagerService
642 ALOGV("Entering BpDrmManagerService::openDecryptSession: mime=%s", mime? mime: "NULL");
666 DecryptHandle* BpDrmManagerService::openDecryptSession( function in class:BpDrmManagerService
668 ALOGV("Entering BpDrmManagerService::openDecryptSession");
1333 = openDecryptSession(uniqueId, fd, offset, length, mime.string());
1352 DecryptHandle* handle = openDecryptSession(uniqueId, uri.string(), mime.string());
1376 DecryptHandle* handle = openDecryptSession(uniqueId, buf, mimeType);
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp429 DecryptHandle* DrmManager::openDecryptSession( function in class:DrmManager
443 result = rDrmEngine.openDecryptSession(uniqueId, handle, fd, offset, length, mime);
458 DecryptHandle* DrmManager::openDecryptSession( function in class:DrmManager
471 result = rDrmEngine.openDecryptSession(uniqueId, handle, uri, mime);
482 ALOGV("DrmManager::openDecryptSession: no capable plug-in found");
487 DecryptHandle* DrmManager::openDecryptSession( function in class:DrmManager
500 result = rDrmEngine.openDecryptSession(uniqueId, handle, buf, mimeType);
512 ALOGV("DrmManager::openDecryptSession: no capable plug-in found");
H A DDrmManagerService.cpp202 DecryptHandle* DrmManagerService::openDecryptSession( function in class:DrmManagerService
204 ALOGV("Entering DrmManagerService::openDecryptSession");
206 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length, mime);
212 DecryptHandle* DrmManagerService::openDecryptSession( function in class:DrmManagerService
214 ALOGV("Entering DrmManagerService::openDecryptSession with uri");
216 return mDrmManager->openDecryptSession(uniqueId, uri, mime);
222 DecryptHandle* DrmManagerService::openDecryptSession( function in class:DrmManagerService
224 ALOGV("Entering DrmManagerService::openDecryptSession for streaming");
226 return mDrmManager->openDecryptSession(uniqueId, buf, mimeType);
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp119 sp<DecryptHandle> DrmManagerClient::openDecryptSession( function in class:DrmManagerClient
122 return mDrmManagerClientImpl->openDecryptSession(
126 sp<DecryptHandle> DrmManagerClient::openDecryptSession( function in class:DrmManagerClient
129 return mDrmManagerClientImpl->openDecryptSession(
133 sp<DecryptHandle> DrmManagerClient::openDecryptSession( function in class:DrmManagerClient
135 return mDrmManagerClientImpl->openDecryptSession(mUniqueId, buf, mimeType);
H A DDrmManagerClientImpl.cpp257 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession( function in class:DrmManagerClientImpl
261 return getDrmManagerService()->openDecryptSession(
265 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession( function in class:DrmManagerClientImpl
270 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime);
275 sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession( function in class:DrmManagerClientImpl
277 return getDrmManagerService()->openDecryptSession(uniqueId, buf, mimeType);

Completed in 47 milliseconds