Lines Matching full:uniqueid
43 void DrmManagerClientImpl::remove(int uniqueId) {
44 getDrmManagerService()->removeUniqueId(uniqueId);
72 void DrmManagerClientImpl::addClient(int uniqueId) {
73 getDrmManagerService()->addClient(uniqueId);
76 void DrmManagerClientImpl::removeClient(int uniqueId) {
77 getDrmManagerService()->removeClient(uniqueId);
81 int uniqueId,
85 return getDrmManagerService()->setDrmServiceListener(uniqueId,
90 int uniqueId, const String8* path, const int action) {
94 getDrmManagerService()->getConstraints(uniqueId, path, action);
99 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) {
102 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path);
108 int uniqueId, const String8& path, const String8& mimeType) {
111 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType);
117 int uniqueId, const DrmInfo* drmInfo) {
120 drmInfoStatus = getDrmManagerService()->processDrmInfo(uniqueId, drmInfo);
126 int uniqueId, const DrmInfoRequest* drmInfoRequest) {
129 drmInfo = getDrmManagerService()->acquireDrmInfo(uniqueId, drmInfoRequest);
134 status_t DrmManagerClientImpl::saveRights(int uniqueId, const DrmRights& drmRights,
137 uniqueId, drmRights, rightsPath, contentPath);
141 int uniqueId, const String8& path, int fd) {
144 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd);
150 int uniqueId, const String8& path, const String8& mimeType) {
154 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType);
160 int uniqueId, const String8& path, int action) {
164 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
170 int uniqueId, sp<DecryptHandle> &decryptHandle,
175 uniqueId, decryptHandle.get(), action, reserve);
181 int uniqueId, sp<DecryptHandle> &decryptHandle,
186 uniqueId, decryptHandle.get(), playbackStatus, position);
192 int uniqueId, const String8& path,
197 uniqueId, path, action, description);
202 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) {
205 status = getDrmManagerService()->removeRights(uniqueId, path);
210 status_t DrmManagerClientImpl::removeAllRights(int uniqueId) {
211 return getDrmManagerService()->removeAllRights(uniqueId);
215 int uniqueId, const String8& mimeType) {
218 retCode = getDrmManagerService()->openConvertSession(uniqueId, mimeType);
224 int uniqueId, int convertId, const DrmBuffer* inputData) {
228 getDrmManagerService()->convertData(uniqueId, convertId, inputData);
234 int uniqueId, int convertId) {
235 return getDrmManagerService()->closeConvertSession(uniqueId, convertId);
239 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
243 uniqueId, length, drmSupportInfoArray);
249 int uniqueId, int fd, off64_t offset,
253 uniqueId, fd, offset, length, mime);
257 int uniqueId, const char* uri, const char* mime) {
261 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime);
267 int uniqueId, const DrmBuffer& buf, const String8& mimeType) {
268 return getDrmManagerService()->openDecryptSession(uniqueId, buf, mimeType);
272 int uniqueId, sp<DecryptHandle> &decryptHandle) {
276 uniqueId, decryptHandle.get());
282 int uniqueId, sp<DecryptHandle> &decryptHandle,
287 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo);
293 int uniqueId, sp<DecryptHandle> &decryptHandle,
300 uniqueId, decryptHandle.get(), decryptUnitId,
307 int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) {
311 uniqueId, decryptHandle.get(), decryptUnitId);
316 ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle,
321 uniqueId, decryptHandle.get(), buffer, numBytes, offset);