Searched refs:mAuthority (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java69 private String mAuthority; field in class:SearchIndexablesProvider
81 mAuthority = info.authority;
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
88 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
H A DDocumentsProvider.java139 private String mAuthority; field in class:DocumentsProvider
148 mAuthority = info.authority;
151 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
152 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
153 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
154 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
155 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
156 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
157 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
158 mMatcher.addURI(mAuthority, "tre
[all...]
H A DSearchRecentSuggestions.java111 private final String mAuthority; field in class:SearchRecentSuggestions
141 mAuthority = new String(authority);
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootCursorWrapper.java27 private final String mAuthority; field in class:RootCursorWrapper
42 mAuthority = authority;
120 return mAuthority;
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java43 private String mAuthority; field in class:SyncActivityTooManyDeletes
58 mAuthority = extras.getString("authority");
122 ContentResolver.requestSync(mAccount, mAuthority, extras);
131 ContentResolver.requestSync(mAccount, mAuthority, extras);
H A DSyncRequest.java34 private final String mAuthority; field in class:SyncRequest
92 return mAuthority;
146 parcel.writeString(mAuthority);
158 mAuthority = in.readString();
166 mAuthority = b.mAuthority;
248 private String mAuthority; field in class:SyncRequest.Builder
361 mAuthority = authority;
H A DAbstractThreadedSyncAdapter.java240 private final String mAuthority; field in class:AbstractThreadedSyncAdapter.SyncThread
249 mAuthority = authority;
262 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
270 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority);
273 mAuthority, provider, syncResult);
279 mAuthority, syncResult);
H A DSearchRecentSuggestionsProvider.java78 private String mAuthority; field in class:SearchRecentSuggestionsProvider
182 mAuthority = new String(authority);
186 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
188 mUriMatcher.addURI(mAuthority, SearchManager.SUGGEST_URI_PATH_QUERY, URI_MATCH_SUGGEST);
304 if (mAuthority == null || mMode == 0) {
H A DContentProvider.java110 private String mAuthority; field in class:ContentProvider
735 mAuthority = authorities;
738 mAuthority = null;
746 if (mAuthority != null) {
747 return mAuthority.equals(authority);
1854 if (mAuthority != null) {
1855 message += mAuthority;
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
H A DRequestSync.java35 private String mAuthority = null; field in class:RequestSync
74 System.out.printf(" Authority: %s\n", mAuthority != null ? mAuthority : "All");
83 ContentResolver.requestSync(account, mAuthority, mExtras);
98 mAuthority = nextArgRequired();
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java45 String mAuthority; field in class:SyncOperationTest
51 mAuthority = "authority1";
169 mAuthority, withExpedited, fiveSecondsFromNow, twoSecondsFlex,
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DStubProvider.java72 private String mAuthority; field in class:StubProvider
79 mAuthority = info.authority;
181 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
199 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
213 DocumentsContract.buildChildDocumentsUri(mAuthority, parentDocumentId));
317 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
356 DocumentsContract.buildChildDocumentsUri(mAuthority, parentId), null, false);
358 getContext().getContentResolver().notifyChange(DocumentsContract.buildRootsUri(mAuthority),
401 DocumentsContract.buildRootsUri(mAuthority),
436 return DocumentsContract.buildDocumentUri(mAuthority, documen
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DTestDocumentsProvider.java103 private String mAuthority; field in class:TestDocumentsProvider
107 mAuthority = info.authority;
125 final Uri uri = DocumentsContract.buildRootsUri(mAuthority);
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java631 private final String mAuthority; field in class:FileProvider.SimplePathStrategy
635 mAuthority = authority;
693 .authority(mAuthority).encodedPath(path).build();

Completed in 446 milliseconds