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

/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
H A DTestModel.java38 private final String mAuthority; field in class:TestModel
42 mAuthority = authority;
51 row.add(RootCursorWrapper.COLUMN_AUTHORITY, mAuthority);
/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 DSearchRecentSuggestions.java111 private final String mAuthority; field in class:SearchRecentSuggestions
141 mAuthority = new String(authority);
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
H A DDocumentsProvider.java144 private String mAuthority; field in class:DocumentsProvider
153 mAuthority = info.authority;
156 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
157 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
158 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
159 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
160 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
161 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
162 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
163 mMatcher.addURI(mAuthority, "tre
[all...]
/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
375 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.java111 private String mAuthority; field in class:ContentProvider
738 mAuthority = authorities;
741 mAuthority = null;
749 if (mAuthority != null) {
750 return mAuthority.equals(authority);
1857 if (mAuthority != null) {
1858 message += mAuthority;
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DDocumentsProviderHelper.java60 private final String mAuthority; field in class:DocumentsProviderHelper
65 mAuthority = authority;
70 final Uri rootsUri = buildRootsUri(mAuthority);
76 return RootInfo.fromRootsCursor(mAuthority, cursor);
101 Uri parentUri = buildDocumentUri(mAuthority, parentId);
129 Uri parentUri = buildDocumentUri(mAuthority, parentId);
179 Uri parentUri = buildDocumentUri(mAuthority, parentId);
198 Uri parentUri = buildDocumentUri(mAuthority, parentId);
216 Uri parentUri = buildDocumentUri(mAuthority, parentId);
261 Uri uri = buildChildDocumentsUri(mAuthority, documentI
[all...]
H A DStubProvider.java91 private String mAuthority = DEFAULT_AUTHORITY; field in class:StubProvider
97 mAuthority = info.authority;
195 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
215 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
235 DocumentsContract.buildChildDocumentsUri(mAuthority, parentDocumentId));
302 DocumentsContract.buildDocumentUri(mAuthority, oldDoc.documentId), null, false);
307 DocumentsContract.buildDocumentUri(mAuthority, newDoc.documentId), null, false);
452 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
528 Uri uri = DocumentsContract.buildDocumentUri(mAuthority, documentId);
548 DocumentsContract.buildDocumentUri(mAuthority, documen
[all...]
/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.java46 String mAuthority; field in class:SyncOperationTest
52 mAuthority = "authority1";
/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/core-utils/java/android/support/v4/content/
H A DFileProvider.java664 private final String mAuthority; field in class:FileProvider.SimplePathStrategy
668 mAuthority = authority;
726 .authority(mAuthority).encodedPath(path).build();
/frameworks/base/packages/DocumentsUI/perf-tests/src/com/android/documentsui/
H A DStressProvider.java79 private String mAuthority = DEFAULT_AUTHORITY; field in class:StressProvider
89 mAuthority = info.authority;

Completed in 751 milliseconds