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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DTypedUriMatcherImpl.java27 private final String mAuthority; field in class:TypedUriMatcherImpl
33 mAuthority = authority;
49 mUriMatcher.addURI(mAuthority, path, value.ordinal());
/packages/apps/Settings/src/com/android/settings/accounts/
H A DSyncStateCheckBoxPreference.java37 private String mAuthority; field in class:SyncStateCheckBoxPreference
49 mAuthority = null;
55 mAuthority = authority;
149 return mAuthority;
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DContentProviderTask.java45 private String mAuthority; field in class:ContentProviderTask
86 result = Result.newSuccess(mResolver.applyBatch(mAuthority, mOps));
97 mAuthority = authority;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DSearchRecentSuggestionsProvider.java43 private String mAuthority; field in class:SearchRecentSuggestionsProvider
127 mAuthority = new String(authority);
131 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
133 mUriMatcher.addURI(mAuthority, SearchManager.SUGGEST_URI_PATH_QUERY, URI_MATCH_SUGGEST);
232 if (mAuthority == null || mMode == 0) {
/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
H A DBluetoothMapEmailProvider.java59 private String mAuthority; field in class:BluetoothMapEmailProvider
91 mAuthority = info.authority;
94 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
95 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER);
96 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
240 if(mAuthority == null){
244 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
246 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
263 if(mAuthority == null){
268 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactDirectoryManagerTest.java61 private String mAuthority; field in class:ContactDirectoryManagerTest.MockContactDirectoryProvider
67 mAuthority = info.authority;
84 if (uri.toString().equals("content://" + mAuthority + "/directories")) {
88 } else if (uri.toString().startsWith("content://" + mAuthority + "/contacts")) {
102 "content://" + mAuthority + "/aggregation_exceptions")) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapObexServer.java98 private String mAuthority; field in class:BluetoothMapObexServer
118 mAuthority = account.getProviderAuthority();
123 mEmailFolderUri = BluetoothMapContract.buildFolderUri(mAuthority,
141 ContentProviderClient providerClient = mResolver.acquireUnstableContentProviderClient(mAuthority);
143 throw new RemoteException("Failed to acquire provider for " + mAuthority);
H A DBluetoothMapContentObserver.java103 private String mAuthority = null; field in class:BluetoothMapContentObserver
163 mAuthority = Uri.parse(account.mBase_uri).getAuthority();
165 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority);
167 throw new RemoteException("Failed to acquire provider for " + mAuthority);
398 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority);
400 throw new RemoteException("Failed to acquire provider for " + mAuthority);
791 if(uri.getAuthority().equals(mAuthority)) {
/packages/apps/Email/src/com/android/email/provider/
H A DEmailProvider.java6099 ContentResolver.requestSync(account, request.mAuthority, extras);
6112 private final String mAuthority; field in class:EmailProvider.SyncRequestMessage
6118 mAuthority = authority;
6136 && mAuthority.equals(that.mAuthority);
6141 int result = mAuthority.hashCode();
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java2690 private String mAuthority; field in class:CalendarProvider2Test.MockProvider
2695 mAuthority = authority;
2717 return Uri.parse("content://" + mAuthority + "/" + mNumItems);

Completed in 316 milliseconds