Home | History | Annotate | Download | only in libdrmframework

Lines Matching full:path

101         int uniqueId, const String8* path, const int action) {
103 if ((NULL != path) && (EMPTY_STRING != *path)) {
105 getDrmManagerService()->getConstraints(uniqueId, path, action);
110 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) {
112 if ((NULL != path) && (EMPTY_STRING != *path)) {
113 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path);
119 int uniqueId, const String8& path, const String8& mimeType) {
121 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) {
122 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType);
152 int uniqueId, const String8& path, int fd) {
154 if (EMPTY_STRING != path) {
155 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path, fd);
161 int uniqueId, const String8& path, const String8& mimeType) {
163 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) {
165 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType);
171 int uniqueId, const String8& path, int action) {
173 if (EMPTY_STRING != path) {
175 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
203 int uniqueId, const String8& path,
206 if (EMPTY_STRING != path) {
208 uniqueId, path, action, description);
213 status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) {
215 if (EMPTY_STRING != path) {
216 status = getDrmManagerService()->removeRights(uniqueId, path);