Searched defs:decryptHandle (Results 1 - 9 of 9) sorted by path

/frameworks/av/drm/common/
H A DDrmEngineBase.cpp82 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
83 return onConsumeRights(uniqueId, decryptHandle, action, reserve);
87 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
88 return onSetPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
123 int uniqueId, DecryptHandle* decryptHandle,
127 return onOpenDecryptSession(uniqueId, decryptHandle, fd, offset, length);
130 return onOpenDecryptSession(uniqueId, decryptHandle, fd, offset, length, mime);
134 int uniqueId, DecryptHandle* decryptHandle,
137 return onOpenDecryptSession(uniqueId, decryptHandle, uri);
139 return onOpenDecryptSession(uniqueId, decryptHandle, ur
81 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
86 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
122 openDecryptSession( int uniqueId, DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t length, const char* mime) argument
133 openDecryptSession( int uniqueId, DecryptHandle* decryptHandle, const char* uri, const char* mime) argument
142 openDecryptSession(int uniqueId, DecryptHandle* decryptHandle, const DrmBuffer& buf, const String8& mimeType) argument
147 closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) argument
151 initializeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
156 decrypt( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
162 finalizeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) argument
167 pread( int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
H A DIDrmManagerService.cpp417 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
424 writeDecryptHandleToParcelData(decryptHandle, &data);
434 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
441 writeDecryptHandleToParcelData(decryptHandle, &data);
654 ALOGV("no decryptHandle is generated in service side");
681 ALOGV("no decryptHandle is generated in service side");
686 status_t BpDrmManagerService::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) { argument
693 writeDecryptHandleToParcelData(decryptHandle, &data);
701 int uniqueId, DecryptHandle* decryptHandle,
709 writeDecryptHandleToParcelData(decryptHandle,
416 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
433 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
700 initializeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
720 decrypt( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
756 finalizeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) argument
772 pread( int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp275 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
278 if (mDecryptSessionMap.indexOfKey(decryptHandle->decryptId) != NAME_NOT_FOUND) {
279 IDrmEngine* drmEngine = mDecryptSessionMap.valueFor(decryptHandle->decryptId);
280 result = drmEngine->consumeRights(uniqueId, decryptHandle, action, reserve);
286 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
289 if (mDecryptSessionMap.indexOfKey(decryptHandle->decryptId) != NAME_NOT_FOUND) {
290 IDrmEngine* drmEngine = mDecryptSessionMap.valueFor(decryptHandle->decryptId);
291 result = drmEngine->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
492 status_t DrmManager::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) { argument
495 if (mDecryptSessionMap.indexOfKey(decryptHandle
274 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
285 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
505 initializeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
516 decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
529 finalizeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) argument
540 pread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
H A DDrmManagerService.cpp209 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
214 return mDrmManager->consumeRights(uniqueId, decryptHandle, action, reserve);
218 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
223 return mDrmManager->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
295 status_t DrmManagerService::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) { argument
300 return mDrmManager->closeDecryptSession(uniqueId, decryptHandle);
303 status_t DrmManagerService::initializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle, argument
309 return mDrmManager->initializeDecryptUnit(uniqueId,decryptHandle, decryptUnitId, headerInfo);
313 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
319 return mDrmManager->decrypt(uniqueId, decryptHandle, decryptUnitI
208 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
217 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
312 decrypt( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
322 finalizeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) argument
331 pread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp80 sp<DecryptHandle> &decryptHandle, int action, bool reserve) {
81 return mDrmManagerClientImpl->consumeRights(mUniqueId, decryptHandle, action, reserve);
85 sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) {
87 ->setPlaybackStatus(mUniqueId, decryptHandle, playbackStatus, position);
138 status_t DrmManagerClient::closeDecryptSession(sp<DecryptHandle> &decryptHandle) { argument
139 return mDrmManagerClientImpl->closeDecryptSession(mUniqueId, decryptHandle);
143 sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
145 mUniqueId, decryptHandle, decryptUnitId, headerInfo);
149 sp<DecryptHandle> &decryptHandle, int decryptUnitId,
152 mUniqueId, decryptHandle, decryptUnitI
79 consumeRights( sp<DecryptHandle> &decryptHandle, int action, bool reserve) argument
84 setPlaybackStatus( sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) argument
142 initializeDecryptUnit( sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
148 decrypt( sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
155 finalizeDecryptUnit( sp<DecryptHandle> &decryptHandle, int decryptUnitId) argument
161 pread( sp<DecryptHandle> &decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
H A DDrmManagerClientImpl.cpp181 int uniqueId, sp<DecryptHandle> &decryptHandle,
184 if (NULL != decryptHandle.get()) {
186 uniqueId, decryptHandle.get(), action, reserve);
192 int uniqueId, sp<DecryptHandle> &decryptHandle,
195 if (NULL != decryptHandle.get()) {
197 uniqueId, decryptHandle.get(), playbackStatus, position);
283 int uniqueId, sp<DecryptHandle> &decryptHandle) {
285 if (NULL != decryptHandle.get()) {
287 uniqueId, decryptHandle.get());
293 int uniqueId, sp<DecryptHandle> &decryptHandle,
180 consumeRights( int uniqueId, sp<DecryptHandle> &decryptHandle, int action, bool reserve) argument
191 setPlaybackStatus( int uniqueId, sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) argument
282 closeDecryptSession( int uniqueId, sp<DecryptHandle> &decryptHandle) argument
292 initializeDecryptUnit( int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
303 decrypt( int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
317 finalizeDecryptUnit( int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) argument
327 pread(int uniqueId, sp<DecryptHandle> &decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp297 DecryptHandle* /* decryptHandle */,
375 status_t FwdLockEngine::onSetPlaybackStatus(int /* uniqueId */, DecryptHandle* /* decryptHandle */,
378 status_t FwdLockEngine::onSetPlaybackStatus(int /* uniqueId */, DecryptHandle* /* decryptHandle */,
473 DecryptHandle* decryptHandle,
479 DecryptHandle* decryptHandle,
490 (NULL != decryptHandle) &&
491 (!decodeSessionMap.isCreated(decryptHandle->decryptId))) {
506 decodeSessionMap.addValue(decryptHandle->decryptId, decodeSession);
510 decryptHandle->mimeType = MimeTypeUtil::convertMimeType(contentType);
511 decryptHandle
472 onOpenDecryptSession(int , DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t ) argument
531 onOpenDecryptSession(int uniqueId, DecryptHandle* decryptHandle, const char* uri) argument
560 onCloseDecryptSession(int , DecryptHandle* decryptHandle) argument
627 onRead(int , DecryptHandle* decryptHandle, void* buffer, int numBytes) argument
653 onLseek(int , DecryptHandle* decryptHandle, off64_t offset, int whence) argument
673 onPread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp184 status_t DrmPassthruPlugIn::onConsumeRights(int uniqueId, DecryptHandle* decryptHandle, argument
190 status_t DrmPassthruPlugIn::onSetPlaybackStatus(int uniqueId, DecryptHandle* decryptHandle, argument
238 int uniqueId, DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t length) {
242 decryptHandle->mimeType = String8("video/passthru");
243 decryptHandle->decryptApiType = DecryptApiType::ELEMENTARY_STREAM_BASED;
244 decryptHandle->status = DRM_NO_ERROR;
245 decryptHandle->decryptInfo = NULL;
253 int uniqueId, DecryptHandle* decryptHandle, const char* uri) {
257 status_t DrmPassthruPlugIn::onCloseDecryptSession(int uniqueId, DecryptHandle* decryptHandle) { argument
259 if (NULL != decryptHandle) {
237 onOpenDecryptSession( int uniqueId, DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t length) argument
252 onOpenDecryptSession( int uniqueId, DecryptHandle* decryptHandle, const char* uri) argument
268 onInitializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) argument
274 onDecrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) argument
295 onFinalizeDecryptUnit( int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) argument
301 onPread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp39 const sp<DecryptHandle> &decryptHandle,
68 const sp<DecryptHandle> &decryptHandle,
72 mDecryptHandle(decryptHandle),
287 sp<DecryptHandle> decryptHandle = source->DrmInitialization(); local
289 if (decryptHandle != NULL) {
290 if (decryptHandle->decryptApiType == DecryptApiType::CONTAINER_BASED) {
291 *mimeType = String8("drm+container_based+") + decryptHandle->mimeType;
293 } else if (decryptHandle->decryptApiType == DecryptApiType::ELEMENTARY_STREAM_BASED) {
294 *mimeType = String8("drm+es_based+") + decryptHandle->mimeType;
67 DRMSource(const sp<IMediaSource> &mediaSource, const sp<DecryptHandle> &decryptHandle, DrmManagerClient *managerClient, int32_t trackId, DrmBuffer *ipmpBox) argument

Completed in 2865 milliseconds