Lines Matching defs: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& drmEngineFile) {
93 status = getDrmManagerService()->installDrmEngine(uniqueId, drmEngineFile);
99 int uniqueId, const String8* path, const int action) {
103 getDrmManagerService()->getConstraints(uniqueId, path, action);
108 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) {
111 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path);
117 int uniqueId, const String8& path, const String8& mimeType) {
120 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType);
126 int uniqueId, const DrmInfo* drmInfo) {
129 drmInfoStatus = getDrmManagerService()->processDrmInfo(uniqueId, drmInfo);
135 int uniqueId, const DrmInfoRequest* drmInfoRequest) {
138 drmInfo = getDrmManagerService()->acquireDrmInfo(uniqueId, drmInfoRequest);
143 status_t DrmManagerClientImpl::saveRights(int uniqueId, const DrmRights& drmRights,
146 uniqueId, drmRights, rightsPath, contentPath);
150 int uniqueId, const String8& path, int fd) {
153 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd);
159 int uniqueId, const String8& path, const String8& mimeType) {
163 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType);
169 int uniqueId, const String8& path, int action) {
173 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
179 int uniqueId, sp<DecryptHandle> &decryptHandle,
184 uniqueId, decryptHandle.get(), action, reserve);
190 int uniqueId, sp<DecryptHandle> &decryptHandle,
195 uniqueId, decryptHandle.get(), playbackStatus, position);
201 int uniqueId, const String8& path,
206 uniqueId, path, action, description);
211 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) {
214 status = getDrmManagerService()->removeRights(uniqueId, path);
219 status_t DrmManagerClientImpl::removeAllRights(int uniqueId) {
220 return getDrmManagerService()->removeAllRights(uniqueId);
224 int uniqueId, const String8& mimeType) {
227 retCode = getDrmManagerService()->openConvertSession(uniqueId, mimeType);
233 int uniqueId, int convertId, const DrmBuffer* inputData) {
237 getDrmManagerService()->convertData(uniqueId, convertId, inputData);
243 int uniqueId, int convertId) {
244 return getDrmManagerService()->closeConvertSession(uniqueId, convertId);
248 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
252 uniqueId, length, drmSupportInfoArray);
258 int uniqueId, int fd, off64_t offset,
262 uniqueId, fd, offset, length, mime);
266 int uniqueId, const char* uri, const char* mime) {
270 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime);
276 int uniqueId, const DrmBuffer& buf, const String8& mimeType) {
277 return getDrmManagerService()->openDecryptSession(uniqueId, buf, mimeType);
281 int uniqueId, sp<DecryptHandle> &decryptHandle) {
285 uniqueId, decryptHandle.get());
291 int uniqueId, sp<DecryptHandle> &decryptHandle,
296 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo);
302 int uniqueId, sp<DecryptHandle> &decryptHandle,
309 uniqueId, decryptHandle.get(), decryptUnitId,
316 int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) {
320 uniqueId, decryptHandle.get(), decryptUnitId);
325 ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle,
330 uniqueId, decryptHandle.get(), buffer, numBytes, offset);