Lines Matching refs:uniqueId
48 void DrmManagerClientImpl::remove(int uniqueId) { in remove() argument
49 getDrmManagerService()->removeUniqueId(uniqueId); in remove()
69 void DrmManagerClientImpl::addClient(int uniqueId) { in addClient() argument
70 getDrmManagerService()->addClient(uniqueId); in addClient()
73 void DrmManagerClientImpl::removeClient(int uniqueId) { in removeClient() argument
74 getDrmManagerService()->removeClient(uniqueId); in removeClient()
78 int uniqueId, in setOnInfoListener() argument
82 return getDrmManagerService()->setDrmServiceListener(uniqueId, in setOnInfoListener()
87 int uniqueId, const String8* path, const int action) { in getConstraints() argument
91 getDrmManagerService()->getConstraints(uniqueId, path, action); in getConstraints()
96 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) { in getMetadata() argument
99 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path); in getMetadata()
105 int uniqueId, const String8& path, const String8& mimeType) { in canHandle() argument
108 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType); in canHandle()
114 int uniqueId, const DrmInfo* drmInfo) { in processDrmInfo() argument
117 drmInfoStatus = getDrmManagerService()->processDrmInfo(uniqueId, drmInfo); in processDrmInfo()
123 int uniqueId, const DrmInfoRequest* drmInfoRequest) { in acquireDrmInfo() argument
126 drmInfo = getDrmManagerService()->acquireDrmInfo(uniqueId, drmInfoRequest); in acquireDrmInfo()
131 status_t DrmManagerClientImpl::saveRights(int uniqueId, const DrmRights& drmRights, in saveRights() argument
134 uniqueId, drmRights, rightsPath, contentPath); in saveRights()
138 int uniqueId, const String8& path, int fd) { in getOriginalMimeType() argument
141 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd); in getOriginalMimeType()
147 int uniqueId, const String8& path, const String8& mimeType) { in getDrmObjectType() argument
151 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType); in getDrmObjectType()
157 int uniqueId, const String8& path, int action) { in checkRightsStatus() argument
161 getDrmManagerService()->checkRightsStatus(uniqueId, path, action); in checkRightsStatus()
167 int uniqueId, sp<DecryptHandle> &decryptHandle, in consumeRights() argument
172 uniqueId, decryptHandle, action, reserve); in consumeRights()
178 int uniqueId, sp<DecryptHandle> &decryptHandle, in setPlaybackStatus() argument
183 uniqueId, decryptHandle, playbackStatus, position); in setPlaybackStatus()
189 int uniqueId, const String8& path, in validateAction() argument
194 uniqueId, path, action, description); in validateAction()
199 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) { in removeRights() argument
202 status = getDrmManagerService()->removeRights(uniqueId, path); in removeRights()
207 status_t DrmManagerClientImpl::removeAllRights(int uniqueId) { in removeAllRights() argument
208 return getDrmManagerService()->removeAllRights(uniqueId); in removeAllRights()
212 int uniqueId, const String8& mimeType) { in openConvertSession() argument
215 retCode = getDrmManagerService()->openConvertSession(uniqueId, mimeType); in openConvertSession()
221 int uniqueId, int convertId, const DrmBuffer* inputData) { in convertData() argument
225 getDrmManagerService()->convertData(uniqueId, convertId, inputData); in convertData()
231 int uniqueId, int convertId) { in closeConvertSession() argument
232 return getDrmManagerService()->closeConvertSession(uniqueId, convertId); in closeConvertSession()
236 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
240 uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
246 int uniqueId, int fd, off64_t offset, in openDecryptSession() argument
250 uniqueId, fd, offset, length, mime); in openDecryptSession()
254 int uniqueId, const char* uri, const char* mime) { in openDecryptSession() argument
258 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime); in openDecryptSession()
264 int uniqueId, const DrmBuffer& buf, const String8& mimeType) { in openDecryptSession() argument
265 return getDrmManagerService()->openDecryptSession(uniqueId, buf, mimeType); in openDecryptSession()
269 int uniqueId, sp<DecryptHandle> &decryptHandle) { in closeDecryptSession() argument
273 uniqueId, decryptHandle); in closeDecryptSession()
279 int uniqueId, sp<DecryptHandle> &decryptHandle, in initializeDecryptUnit() argument
284 uniqueId, decryptHandle, decryptUnitId, headerInfo); in initializeDecryptUnit()
290 int uniqueId, sp<DecryptHandle> &decryptHandle, in decrypt() argument
297 uniqueId, decryptHandle, decryptUnitId, in decrypt()
304 int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) { in finalizeDecryptUnit() argument
308 uniqueId, decryptHandle, decryptUnitId); in finalizeDecryptUnit()
313 ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle, in pread() argument
318 uniqueId, decryptHandle, buffer, numBytes, offset); in pread()