Home | History | Annotate | Download | only in drmserver

Lines Matching refs:uniqueId

139 void DrmManagerService::removeUniqueId(int uniqueId) {
140 mDrmManager->removeUniqueId(uniqueId);
143 void DrmManagerService::addClient(int uniqueId) {
144 mDrmManager->addClient(uniqueId);
147 void DrmManagerService::removeClient(int uniqueId) {
148 mDrmManager->removeClient(uniqueId);
152 int uniqueId, const sp<IDrmServiceListener>& drmServiceListener) {
154 mDrmManager->setDrmServiceListener(uniqueId, drmServiceListener);
159 int uniqueId, const String8* path, const int action) {
161 return mDrmManager->getConstraints(uniqueId, path, action);
164 DrmMetadata* DrmManagerService::getMetadata(int uniqueId, const String8* path) {
166 return mDrmManager->getMetadata(uniqueId, path);
169 bool DrmManagerService::canHandle(int uniqueId, const String8& path, const String8& mimeType) {
171 return mDrmManager->canHandle(uniqueId, path, mimeType);
174 DrmInfoStatus* DrmManagerService::processDrmInfo(int uniqueId, const DrmInfo* drmInfo) {
176 return mDrmManager->processDrmInfo(uniqueId, drmInfo);
179 DrmInfo* DrmManagerService::acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInfoRequest) {
181 return mDrmManager->acquireDrmInfo(uniqueId, drmInfoRequest);
185 int uniqueId, const DrmRights& drmRights,
188 return mDrmManager->saveRights(uniqueId, drmRights, rightsPath, contentPath);
191 String8 DrmManagerService::getOriginalMimeType(int uniqueId, const String8& path, int fd) {
193 return mDrmManager->getOriginalMimeType(uniqueId, path, fd);
197 int uniqueId, const String8& path, const String8& mimeType) {
199 return mDrmManager->getDrmObjectType(uniqueId, path, mimeType);
203 int uniqueId, const String8& path, int action) {
205 return mDrmManager->checkRightsStatus(uniqueId, path, action);
209 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);
227 int uniqueId, const String8& path,
230 return mDrmManager->validateAction(uniqueId, path, action, description);
233 status_t DrmManagerService::removeRights(int uniqueId, const String8& path) {
235 return mDrmManager->removeRights(uniqueId, path);
238 status_t DrmManagerService::removeAllRights(int uniqueId) {
240 return mDrmManager->removeAllRights(uniqueId);
243 int DrmManagerService::openConvertSession(int uniqueId, const String8& mimeType) {
245 return mDrmManager->openConvertSession(uniqueId, mimeType);
249 int uniqueId, int convertId, const DrmBuffer* inputData) {
251 return mDrmManager->convertData(uniqueId, convertId, inputData);
254 DrmConvertedStatus* DrmManagerService::closeConvertSession(int uniqueId, int convertId) {
256 return mDrmManager->closeConvertSession(uniqueId, convertId);
260 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
262 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray);
266 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime) {
269 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length, mime);
276 int uniqueId, const char* uri, const char* mime) {
279 return mDrmManager->openDecryptSession(uniqueId, uri, mime);
286 int uniqueId, const DrmBuffer& buf, const String8& mimeType) {
289 return mDrmManager->openDecryptSession(uniqueId, buf, mimeType);
295 status_t DrmManagerService::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) {
300 return mDrmManager->closeDecryptSession(uniqueId, decryptHandle);
303 status_t DrmManagerService::initializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle,
309 return mDrmManager->initializeDecryptUnit(uniqueId,decryptHandle, decryptUnitId, headerInfo);
313 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId,
319 return mDrmManager->decrypt(uniqueId, decryptHandle, decryptUnitId, encBuffer, decBuffer, IV);
323 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) {
328 return mDrmManager->finalizeDecryptUnit(uniqueId, decryptHandle, decryptUnitId);
331 ssize_t DrmManagerService::pread(int uniqueId, DecryptHandle* decryptHandle,
337 return mDrmManager->pread(uniqueId, decryptHandle, buffer, numBytes, offset);