OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:openDecryptSession
(Results
1 - 6
of
6
) sorted by null
/frameworks/av/drm/libdrmframework/
DrmManagerClient.cpp
119
sp<DecryptHandle> DrmManagerClient::
openDecryptSession
(
122
return mDrmManagerClientImpl->
openDecryptSession
(
126
sp<DecryptHandle> DrmManagerClient::
openDecryptSession
(
129
return mDrmManagerClientImpl->
openDecryptSession
(
133
sp<DecryptHandle> DrmManagerClient::
openDecryptSession
(
135
return mDrmManagerClientImpl->
openDecryptSession
(mUniqueId, buf, mimeType);
DrmManagerClientImpl.cpp
248
sp<DecryptHandle> DrmManagerClientImpl::
openDecryptSession
(
252
return getDrmManagerService()->
openDecryptSession
(
256
sp<DecryptHandle> DrmManagerClientImpl::
openDecryptSession
(
261
handle = getDrmManagerService()->
openDecryptSession
(uniqueId, uri, mime);
266
sp<DecryptHandle> DrmManagerClientImpl::
openDecryptSession
(
268
return getDrmManagerService()->
openDecryptSession
(uniqueId, buf, mimeType);
/frameworks/av/drm/common/
DrmEngineBase.cpp
122
status_t DrmEngineBase::
openDecryptSession
(
133
status_t DrmEngineBase::
openDecryptSession
(
142
status_t DrmEngineBase::
openDecryptSession
(int uniqueId, DecryptHandle* decryptHandle,
IDrmManagerService.cpp
603
DecryptHandle* BpDrmManagerService::
openDecryptSession
(
605
ALOGV("Entering BpDrmManagerService::
openDecryptSession
");
629
DecryptHandle* BpDrmManagerService::
openDecryptSession
(
632
ALOGV("Entering BpDrmManagerService::
openDecryptSession
: mime=%s", mime? mime: "NULL");
656
DecryptHandle* BpDrmManagerService::
openDecryptSession
(
658
ALOGV("Entering BpDrmManagerService::
openDecryptSession
");
[
all
...]
/frameworks/av/drm/drmserver/
DrmManager.cpp
404
DecryptHandle* DrmManager::
openDecryptSession
(
418
result = rDrmEngine.
openDecryptSession
(uniqueId, handle, fd, offset, length, mime);
433
DecryptHandle* DrmManager::
openDecryptSession
(
446
result = rDrmEngine.
openDecryptSession
(uniqueId, handle, uri, mime);
457
ALOGV("DrmManager::
openDecryptSession
: no capable plug-in found");
462
DecryptHandle* DrmManager::
openDecryptSession
(
475
result = rDrmEngine.
openDecryptSession
(uniqueId, handle, buf, mimeType);
487
ALOGV("DrmManager::
openDecryptSession
: no capable plug-in found");
DrmManagerService.cpp
197
DecryptHandle* DrmManagerService::
openDecryptSession
(
199
ALOGV("Entering DrmManagerService::
openDecryptSession
");
201
return mDrmManager->
openDecryptSession
(uniqueId, fd, offset, length, mime);
207
DecryptHandle* DrmManagerService::
openDecryptSession
(
209
ALOGV("Entering DrmManagerService::
openDecryptSession
with uri");
211
return mDrmManager->
openDecryptSession
(uniqueId, uri, mime);
217
DecryptHandle* DrmManagerService::
openDecryptSession
(
219
ALOGV("Entering DrmManagerService::
openDecryptSession
for streaming");
221
return mDrmManager->
openDecryptSession
(uniqueId, buf, mimeType);
Completed in 83 milliseconds