Lines Matching refs:uniqueId
146 void DrmManagerService::removeUniqueId(int uniqueId) { in removeUniqueId() argument
147 mDrmManager->removeUniqueId(uniqueId); in removeUniqueId()
150 void DrmManagerService::addClient(int uniqueId) { in addClient() argument
151 mDrmManager->addClient(uniqueId); in addClient()
154 void DrmManagerService::removeClient(int uniqueId) { in removeClient() argument
155 mDrmManager->removeClient(uniqueId); in removeClient()
159 int uniqueId, const sp<IDrmServiceListener>& drmServiceListener) { in setDrmServiceListener() argument
161 mDrmManager->setDrmServiceListener(uniqueId, drmServiceListener); in setDrmServiceListener()
166 int uniqueId, const String8* path, const int action) { in getConstraints() argument
168 return mDrmManager->getConstraints(uniqueId, path, action); in getConstraints()
171 DrmMetadata* DrmManagerService::getMetadata(int uniqueId, const String8* path) { in getMetadata() argument
173 return mDrmManager->getMetadata(uniqueId, path); in getMetadata()
176 bool DrmManagerService::canHandle(int uniqueId, const String8& path, const String8& mimeType) { in canHandle() argument
178 return mDrmManager->canHandle(uniqueId, path, mimeType); in canHandle()
181 DrmInfoStatus* DrmManagerService::processDrmInfo(int uniqueId, const DrmInfo* drmInfo) { in processDrmInfo() argument
183 return mDrmManager->processDrmInfo(uniqueId, drmInfo); in processDrmInfo()
186 DrmInfo* DrmManagerService::acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInfoRequest) { in acquireDrmInfo() argument
188 return mDrmManager->acquireDrmInfo(uniqueId, drmInfoRequest); in acquireDrmInfo()
192 int uniqueId, const DrmRights& drmRights, in saveRights() argument
195 return mDrmManager->saveRights(uniqueId, drmRights, rightsPath, contentPath); in saveRights()
198 String8 DrmManagerService::getOriginalMimeType(int uniqueId, const String8& path, int fd) { in getOriginalMimeType() argument
200 return mDrmManager->getOriginalMimeType(uniqueId, path, fd); in getOriginalMimeType()
204 int uniqueId, const String8& path, const String8& mimeType) { in getDrmObjectType() argument
206 return mDrmManager->getDrmObjectType(uniqueId, path, mimeType); in getDrmObjectType()
210 int uniqueId, const String8& path, int action) { in checkRightsStatus() argument
212 return mDrmManager->checkRightsStatus(uniqueId, path, action); in checkRightsStatus()
216 int uniqueId, sp<DecryptHandle>& decryptHandle, int action, bool reserve) { in consumeRights() argument
221 return mDrmManager->consumeRights(uniqueId, decryptHandle, action, reserve); in consumeRights()
225 int uniqueId, sp<DecryptHandle>& decryptHandle, int playbackStatus, int64_t position) { in setPlaybackStatus() argument
230 return mDrmManager->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position); in setPlaybackStatus()
234 int uniqueId, const String8& path, in validateAction() argument
237 return mDrmManager->validateAction(uniqueId, path, action, description); in validateAction()
240 status_t DrmManagerService::removeRights(int uniqueId, const String8& path) { in removeRights() argument
242 return mDrmManager->removeRights(uniqueId, path); in removeRights()
245 status_t DrmManagerService::removeAllRights(int uniqueId) { in removeAllRights() argument
247 return mDrmManager->removeAllRights(uniqueId); in removeAllRights()
250 int DrmManagerService::openConvertSession(int uniqueId, const String8& mimeType) { in openConvertSession() argument
252 return mDrmManager->openConvertSession(uniqueId, mimeType); in openConvertSession()
256 int uniqueId, int convertId, const DrmBuffer* inputData) { in convertData() argument
258 return mDrmManager->convertData(uniqueId, convertId, inputData); in convertData()
261 DrmConvertedStatus* DrmManagerService::closeConvertSession(int uniqueId, int convertId) { in closeConvertSession() argument
263 return mDrmManager->closeConvertSession(uniqueId, convertId); in closeConvertSession()
267 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
269 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
273 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime) { in openDecryptSession() argument
276 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length, mime); in openDecryptSession()
283 int uniqueId, const char* uri, const char* mime) { in openDecryptSession() argument
286 return mDrmManager->openDecryptSession(uniqueId, uri, mime); in openDecryptSession()
293 int uniqueId, const DrmBuffer& buf, const String8& mimeType) { in openDecryptSession() argument
296 return mDrmManager->openDecryptSession(uniqueId, buf, mimeType); in openDecryptSession()
302 status_t DrmManagerService::closeDecryptSession(int uniqueId, sp<DecryptHandle>& decryptHandle) { in closeDecryptSession() argument
307 return mDrmManager->closeDecryptSession(uniqueId, decryptHandle); in closeDecryptSession()
310 status_t DrmManagerService::initializeDecryptUnit(int uniqueId, sp<DecryptHandle>& decryptHandle, in initializeDecryptUnit() argument
316 return mDrmManager->initializeDecryptUnit(uniqueId,decryptHandle, decryptUnitId, headerInfo); in initializeDecryptUnit()
320 int uniqueId, sp<DecryptHandle>& decryptHandle, int decryptUnitId, in decrypt() argument
326 return mDrmManager->decrypt(uniqueId, decryptHandle, decryptUnitId, encBuffer, decBuffer, IV); in decrypt()
330 int uniqueId, sp<DecryptHandle>& decryptHandle, int decryptUnitId) { in finalizeDecryptUnit() argument
335 return mDrmManager->finalizeDecryptUnit(uniqueId, decryptHandle, decryptUnitId); in finalizeDecryptUnit()
338 ssize_t DrmManagerService::pread(int uniqueId, sp<DecryptHandle>& decryptHandle, in pread() argument
344 return mDrmManager->pread(uniqueId, decryptHandle, buffer, numBytes, offset); in pread()