Lines Matching refs:uniqueId
147 void DrmManagerService::removeUniqueId(int uniqueId) { in removeUniqueId() argument
148 mDrmManager->removeUniqueId(uniqueId); in removeUniqueId()
151 void DrmManagerService::addClient(int uniqueId) { in addClient() argument
152 mDrmManager->addClient(uniqueId); in addClient()
155 void DrmManagerService::removeClient(int uniqueId) { in removeClient() argument
156 mDrmManager->removeClient(uniqueId); in removeClient()
160 int uniqueId, const sp<IDrmServiceListener>& drmServiceListener) { in setDrmServiceListener() argument
162 mDrmManager->setDrmServiceListener(uniqueId, drmServiceListener); in setDrmServiceListener()
167 int uniqueId, const String8* path, const int action) { in getConstraints() argument
169 return mDrmManager->getConstraints(uniqueId, path, action); in getConstraints()
172 DrmMetadata* DrmManagerService::getMetadata(int uniqueId, const String8* path) { in getMetadata() argument
174 return mDrmManager->getMetadata(uniqueId, path); in getMetadata()
177 bool DrmManagerService::canHandle(int uniqueId, const String8& path, const String8& mimeType) { in canHandle() argument
179 return mDrmManager->canHandle(uniqueId, path, mimeType); in canHandle()
182 DrmInfoStatus* DrmManagerService::processDrmInfo(int uniqueId, const DrmInfo* drmInfo) { in processDrmInfo() argument
184 return mDrmManager->processDrmInfo(uniqueId, drmInfo); in processDrmInfo()
187 DrmInfo* DrmManagerService::acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInfoRequest) { in acquireDrmInfo() argument
189 return mDrmManager->acquireDrmInfo(uniqueId, drmInfoRequest); in acquireDrmInfo()
193 int uniqueId, const DrmRights& drmRights, in saveRights() argument
196 return mDrmManager->saveRights(uniqueId, drmRights, rightsPath, contentPath); in saveRights()
199 String8 DrmManagerService::getOriginalMimeType(int uniqueId, const String8& path, int fd) { in getOriginalMimeType() argument
201 return mDrmManager->getOriginalMimeType(uniqueId, path, fd); in getOriginalMimeType()
205 int uniqueId, const String8& path, const String8& mimeType) { in getDrmObjectType() argument
207 return mDrmManager->getDrmObjectType(uniqueId, path, mimeType); in getDrmObjectType()
211 int uniqueId, const String8& path, int action) { in checkRightsStatus() argument
213 return mDrmManager->checkRightsStatus(uniqueId, path, action); in checkRightsStatus()
217 int uniqueId, sp<DecryptHandle>& decryptHandle, int action, bool reserve) { in consumeRights() argument
222 return mDrmManager->consumeRights(uniqueId, decryptHandle, action, reserve); in consumeRights()
226 int uniqueId, sp<DecryptHandle>& decryptHandle, int playbackStatus, int64_t position) { in setPlaybackStatus() argument
231 return mDrmManager->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position); in setPlaybackStatus()
235 int uniqueId, const String8& path, in validateAction() argument
238 return mDrmManager->validateAction(uniqueId, path, action, description); in validateAction()
241 status_t DrmManagerService::removeRights(int uniqueId, const String8& path) { in removeRights() argument
243 return mDrmManager->removeRights(uniqueId, path); in removeRights()
246 status_t DrmManagerService::removeAllRights(int uniqueId) { in removeAllRights() argument
248 return mDrmManager->removeAllRights(uniqueId); in removeAllRights()
251 int DrmManagerService::openConvertSession(int uniqueId, const String8& mimeType) { in openConvertSession() argument
253 return mDrmManager->openConvertSession(uniqueId, mimeType); in openConvertSession()
257 int uniqueId, int convertId, const DrmBuffer* inputData) { in convertData() argument
259 return mDrmManager->convertData(uniqueId, convertId, inputData); in convertData()
262 DrmConvertedStatus* DrmManagerService::closeConvertSession(int uniqueId, int convertId) { in closeConvertSession() argument
264 return mDrmManager->closeConvertSession(uniqueId, convertId); in closeConvertSession()
268 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
270 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
274 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime) { in openDecryptSession() argument
277 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length, mime); in openDecryptSession()
284 int uniqueId, const char* uri, const char* mime) { in openDecryptSession() argument
287 return mDrmManager->openDecryptSession(uniqueId, uri, mime); in openDecryptSession()
294 int uniqueId, const DrmBuffer& buf, const String8& mimeType) { in openDecryptSession() argument
297 return mDrmManager->openDecryptSession(uniqueId, buf, mimeType); in openDecryptSession()
303 status_t DrmManagerService::closeDecryptSession(int uniqueId, sp<DecryptHandle>& decryptHandle) { in closeDecryptSession() argument
308 return mDrmManager->closeDecryptSession(uniqueId, decryptHandle); in closeDecryptSession()
311 status_t DrmManagerService::initializeDecryptUnit(int uniqueId, sp<DecryptHandle>& decryptHandle, in initializeDecryptUnit() argument
317 return mDrmManager->initializeDecryptUnit(uniqueId,decryptHandle, decryptUnitId, headerInfo); in initializeDecryptUnit()
321 int uniqueId, sp<DecryptHandle>& decryptHandle, int decryptUnitId, in decrypt() argument
327 return mDrmManager->decrypt(uniqueId, decryptHandle, decryptUnitId, encBuffer, decBuffer, IV); in decrypt()
331 int uniqueId, sp<DecryptHandle>& decryptHandle, int decryptUnitId) { in finalizeDecryptUnit() argument
336 return mDrmManager->finalizeDecryptUnit(uniqueId, decryptHandle, decryptUnitId); in finalizeDecryptUnit()
339 ssize_t DrmManagerService::pread(int uniqueId, sp<DecryptHandle>& decryptHandle, in pread() argument
345 return mDrmManager->pread(uniqueId, decryptHandle, buffer, numBytes, offset); in pread()