Home
last modified time | relevance | path

Searched refs:mAuthority (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/content/
DSyncRequest.java34 private final String mAuthority; field in SyncRequest
92 return mAuthority; in getProvider()
146 parcel.writeString(mAuthority); in writeToParcel()
158 mAuthority = in.readString(); in SyncRequest()
166 mAuthority = b.mAuthority; in SyncRequest()
248 private String mAuthority; field in SyncRequest.Builder
375 mAuthority = authority; in setSyncAdapter()
DAbstractThreadedSyncAdapter.java246 Log.d(TAG, "cancelSync() " + info.mAuthority + " " + info.mAccount); in cancelSync()
278 private final String mAuthority; field in AbstractThreadedSyncAdapter.SyncThread
287 mAuthority = authority; in SyncThread()
304 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority); in run()
319 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority); in run()
322 mAuthority, provider, syncResult); in run()
336 mAuthority, syncResult); in run()
DSyncActivityTooManyDeletes.java43 private String mAuthority; field in SyncActivityTooManyDeletes
58 mAuthority = extras.getString("authority"); in onCreate()
122 ContentResolver.requestSync(mAccount, mAuthority, extras); in startSyncReallyDelete()
131 ContentResolver.requestSync(mAccount, mAuthority, extras); in startSyncUndoDeletes()
DSearchRecentSuggestionsProvider.java78 private String mAuthority; field in SearchRecentSuggestionsProvider
182 mAuthority = new String(authority); in setupSuggestions()
186 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions"); in setupSuggestions()
188 mUriMatcher.addURI(mAuthority, SearchManager.SUGGEST_URI_PATH_QUERY, URI_MATCH_SUGGEST); in setupSuggestions()
304 if (mAuthority == null || mMode == 0) { in onCreate()
DContentProvider.java114 private String mAuthority; field in ContentProvider
763 mAuthority = authorities; in setAuthorities()
766 mAuthority = null; in setAuthorities()
774 if (mAuthority != null) { in matchesOurAuthorities()
775 return mAuthority.equals(authority); in matchesOurAuthorities()
2027 if (mAuthority != null) { in validateIncomingUri()
2028 message += mAuthority; in validateIncomingUri()
/frameworks/base/core/java/android/provider/
DSearchIndexablesProvider.java69 private String mAuthority; field in SearchIndexablesProvider
81 mAuthority = info.authority; in attachInfo()
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH, in attachInfo()
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH, in attachInfo()
88 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH, in attachInfo()
DDocumentsProvider.java154 private String mAuthority; field in DocumentsProvider
189 mAuthority = authority; in registerAuthority()
192 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS); in registerAuthority()
193 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT); in registerAuthority()
194 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT); in registerAuthority()
195 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH); in registerAuthority()
196 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT); in registerAuthority()
197 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN); in registerAuthority()
198 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE); in registerAuthority()
199 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE); in registerAuthority()
[all …]
DSearchRecentSuggestions.java111 private final String mAuthority; field in SearchRecentSuggestions
141 mAuthority = new String(authority); in SearchRecentSuggestions()
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions"); in SearchRecentSuggestions()
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
DRequestSync.java36 ContentResolver.requestSync(caller.mAccount, caller.mAuthority, caller.mExtras); in invoke()
42 ContentResolver.addPeriodicSync(caller.mAccount, caller.mAuthority, caller.mExtras, in invoke()
50 caller.mAccount, caller.mAuthority, caller.mExtras); in invoke()
62 private String mAuthority; field in RequestSync
105 System.out.printf(" Authority: %s\n", mAuthority != null ? mAuthority : "All"); in run()
146 mAuthority = nextArgRequired(); in parseArgs()
/frameworks/base/telephony/java/android/telephony/mbms/
DMbmsTempFileProvider.java44 private String mAuthority; field in MbmsTempFileProvider
85 final File file = getFileForUri(mContext, mAuthority, uri); in openFile()
102 mAuthority = info.authority; in attachInfo()
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
DSyncOperationTest.java39 String mAuthority; field in SyncOperationTest
45 mAuthority = "authority1"; in setUp()
/frameworks/support/core-utils/java/android/support/v4/content/
DFileProvider.java665 private final String mAuthority; field in FileProvider.SimplePathStrategy
669 mAuthority = authority; in SimplePathStrategy()
727 .authority(mAuthority).encodedPath(path).build(); in getUriForFile()
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DTestDocumentsProvider.java103 private String mAuthority; field in TestDocumentsProvider
107 mAuthority = info.authority; in attachInfo()
125 final Uri uri = DocumentsContract.buildRootsUri(mAuthority); in queryRoots()