Lines Matching refs:path
99 int uniqueId, const String8* path, const int action) { in getConstraints() argument
101 if ((NULL != path) && (EMPTY_STRING != *path)) { in getConstraints()
103 getDrmManagerService()->getConstraints(uniqueId, path, action); in getConstraints()
108 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) { in getMetadata() argument
110 if ((NULL != path) && (EMPTY_STRING != *path)) { in getMetadata()
111 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path); in getMetadata()
117 int uniqueId, const String8& path, const String8& mimeType) { in canHandle() argument
119 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) { in canHandle()
120 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType); in canHandle()
150 int uniqueId, const String8& path, int fd) { in getOriginalMimeType() argument
152 if (EMPTY_STRING != path) { in getOriginalMimeType()
153 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd); in getOriginalMimeType()
159 int uniqueId, const String8& path, const String8& mimeType) { in getDrmObjectType() argument
161 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) { in getDrmObjectType()
163 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType); in getDrmObjectType()
169 int uniqueId, const String8& path, int action) { in checkRightsStatus() argument
171 if (EMPTY_STRING != path) { in checkRightsStatus()
173 getDrmManagerService()->checkRightsStatus(uniqueId, path, action); in checkRightsStatus()
201 int uniqueId, const String8& path, in validateAction() argument
204 if (EMPTY_STRING != path) { in validateAction()
206 uniqueId, path, action, description); in validateAction()
211 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) { in removeRights() argument
213 if (EMPTY_STRING != path) { in removeRights()
214 status = getDrmManagerService()->removeRights(uniqueId, path); in removeRights()