Lines Matching defs:uniqueId

30     int uniqueId, const String8* path, int action) {
31 return onGetConstraints(uniqueId, path, action);
34 DrmMetadata* DrmEngineBase::getMetadata(int uniqueId, const String8* path) {
35 return onGetMetadata(uniqueId, path);
38 status_t DrmEngineBase::initialize(int uniqueId) {
39 return onInitialize(uniqueId);
43 int uniqueId, const IDrmEngine::OnInfoListener* infoListener) {
44 return onSetOnInfoListener(uniqueId, infoListener);
47 status_t DrmEngineBase::terminate(int uniqueId) {
48 return onTerminate(uniqueId);
51 bool DrmEngineBase::canHandle(int uniqueId, const String8& path) {
52 return onCanHandle(uniqueId, path);
55 DrmInfoStatus* DrmEngineBase::processDrmInfo(int uniqueId, const DrmInfo* drmInfo) {
56 return onProcessDrmInfo(uniqueId, drmInfo);
60 int uniqueId, const DrmRights& drmRights,
62 return onSaveRights(uniqueId, drmRights, rightsPath, contentPath);
65 DrmInfo* DrmEngineBase::acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInfoRequest) {
66 return onAcquireDrmInfo(uniqueId, drmInfoRequest);
69 String8 DrmEngineBase::getOriginalMimeType(int uniqueId, const String8& path, int fd) {
70 return onGetOriginalMimeType(uniqueId, path, fd);
73 int DrmEngineBase::getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType) {
74 return onGetDrmObjectType(uniqueId, path, mimeType);
77 int DrmEngineBase::checkRightsStatus(int uniqueId, const String8& path, int action) {
78 return onCheckRightsStatus(uniqueId, path, action);
82 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);
92 int uniqueId, const String8& path,
94 return onValidateAction(uniqueId, path, action, description);
97 status_t DrmEngineBase::removeRights(int uniqueId, const String8& path) {
98 return onRemoveRights(uniqueId, path);
101 status_t DrmEngineBase::removeAllRights(int uniqueId) {
102 return onRemoveAllRights(uniqueId);
105 status_t DrmEngineBase::openConvertSession(int uniqueId, int convertId) {
106 return onOpenConvertSession(uniqueId, convertId);
110 int uniqueId, int convertId, const DrmBuffer* inputData) {
111 return onConvertData(uniqueId, convertId, inputData);
114 DrmConvertedStatus* DrmEngineBase::closeConvertSession(int uniqueId, int convertId) {
115 return onCloseConvertSession(uniqueId, convertId);
118 DrmSupportInfo* DrmEngineBase::getSupportInfo(int uniqueId) {
119 return onGetSupportInfo(uniqueId);
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, uri, mime);
142 status_t DrmEngineBase::openDecryptSession(int uniqueId, DecryptHandle* decryptHandle,
144 return onOpenDecryptSession(uniqueId, decryptHandle, buf, mimeType);
147 status_t DrmEngineBase::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) {
148 return onCloseDecryptSession(uniqueId, decryptHandle);
152 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
153 return onInitializeDecryptUnit(uniqueId, decryptHandle, decryptUnitId, headerInfo);
157 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
159 return onDecrypt(uniqueId, decryptHandle, decryptUnitId, encBuffer, decBuffer, IV);
163 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) {
164 return onFinalizeDecryptUnit(uniqueId, decryptHandle, decryptUnitId);
168 int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) {
169 return onPread(uniqueId, decryptHandle, buffer, numBytes, offset);