Lines Matching refs:uniqueId

48 void DrmManagerClientImpl::remove(int uniqueId) {  in remove()  argument
49 getDrmManagerService()->removeUniqueId(uniqueId); in remove()
83 void DrmManagerClientImpl::addClient(int uniqueId) { in addClient() argument
84 getDrmManagerService()->addClient(uniqueId); in addClient()
87 void DrmManagerClientImpl::removeClient(int uniqueId) { in removeClient() argument
88 getDrmManagerService()->removeClient(uniqueId); in removeClient()
92 int uniqueId, in setOnInfoListener() argument
96 return getDrmManagerService()->setDrmServiceListener(uniqueId, in setOnInfoListener()
101 int uniqueId, const String8* path, const int action) { in getConstraints() argument
105 getDrmManagerService()->getConstraints(uniqueId, path, action); in getConstraints()
110 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) { in getMetadata() argument
113 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path); in getMetadata()
119 int uniqueId, const String8& path, const String8& mimeType) { in canHandle() argument
122 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType); in canHandle()
128 int uniqueId, const DrmInfo* drmInfo) { in processDrmInfo() argument
131 drmInfoStatus = getDrmManagerService()->processDrmInfo(uniqueId, drmInfo); in processDrmInfo()
137 int uniqueId, const DrmInfoRequest* drmInfoRequest) { in acquireDrmInfo() argument
140 drmInfo = getDrmManagerService()->acquireDrmInfo(uniqueId, drmInfoRequest); in acquireDrmInfo()
145 status_t DrmManagerClientImpl::saveRights(int uniqueId, const DrmRights& drmRights, in saveRights() argument
148 uniqueId, drmRights, rightsPath, contentPath); in saveRights()
152 int uniqueId, const String8& path, int fd) { in getOriginalMimeType() argument
155 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd); in getOriginalMimeType()
161 int uniqueId, const String8& path, const String8& mimeType) { in getDrmObjectType() argument
165 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType); in getDrmObjectType()
171 int uniqueId, const String8& path, int action) { in checkRightsStatus() argument
175 getDrmManagerService()->checkRightsStatus(uniqueId, path, action); in checkRightsStatus()
181 int uniqueId, sp<DecryptHandle> &decryptHandle, in consumeRights() argument
186 uniqueId, decryptHandle.get(), action, reserve); in consumeRights()
192 int uniqueId, sp<DecryptHandle> &decryptHandle, in setPlaybackStatus() argument
197 uniqueId, decryptHandle.get(), playbackStatus, position); in setPlaybackStatus()
203 int uniqueId, const String8& path, in validateAction() argument
208 uniqueId, path, action, description); in validateAction()
213 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) { in removeRights() argument
216 status = getDrmManagerService()->removeRights(uniqueId, path); in removeRights()
221 status_t DrmManagerClientImpl::removeAllRights(int uniqueId) { in removeAllRights() argument
222 return getDrmManagerService()->removeAllRights(uniqueId); in removeAllRights()
226 int uniqueId, const String8& mimeType) { in openConvertSession() argument
229 retCode = getDrmManagerService()->openConvertSession(uniqueId, mimeType); in openConvertSession()
235 int uniqueId, int convertId, const DrmBuffer* inputData) { in convertData() argument
239 getDrmManagerService()->convertData(uniqueId, convertId, inputData); in convertData()
245 int uniqueId, int convertId) { in closeConvertSession() argument
246 return getDrmManagerService()->closeConvertSession(uniqueId, convertId); in closeConvertSession()
250 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
254 uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
260 int uniqueId, int fd, off64_t offset, in openDecryptSession() argument
264 uniqueId, fd, offset, length, mime); in openDecryptSession()
268 int uniqueId, const char* uri, const char* mime) { in openDecryptSession() argument
272 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime); in openDecryptSession()
278 int uniqueId, const DrmBuffer& buf, const String8& mimeType) { in openDecryptSession() argument
279 return getDrmManagerService()->openDecryptSession(uniqueId, buf, mimeType); in openDecryptSession()
283 int uniqueId, sp<DecryptHandle> &decryptHandle) { in closeDecryptSession() argument
287 uniqueId, decryptHandle.get()); in closeDecryptSession()
293 int uniqueId, sp<DecryptHandle> &decryptHandle, in initializeDecryptUnit() argument
298 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo); in initializeDecryptUnit()
304 int uniqueId, sp<DecryptHandle> &decryptHandle, in decrypt() argument
311 uniqueId, decryptHandle.get(), decryptUnitId, in decrypt()
318 int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) { in finalizeDecryptUnit() argument
322 uniqueId, decryptHandle.get(), decryptUnitId); in finalizeDecryptUnit()
327 ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle, in pread() argument
332 uniqueId, decryptHandle.get(), buffer, numBytes, offset); in pread()