Home | History | Annotate | Download | only in provider

Lines Matching refs:mAuthority

138     private String mAuthority;
147 mAuthority = info.authority;
150 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
151 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
152 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
153 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
154 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
155 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
156 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
157 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE);
631 if (!mAuthority.equals(authority)) {
633 "Requested authority " + authority + " doesn't match provider " + mAuthority);
701 context.revokeUriPermission(buildDocumentUri(mAuthority, documentId), ~0);
702 context.revokeUriPermission(buildTreeDocumentUri(mAuthority, documentId), ~0);