Lines Matching defs:uniqueId

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