Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapEmailProvider.java59 private String mAuthority; field in BluetoothMapEmailProvider
91 mAuthority = info.authority; in attachInfo()
94 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT); in attachInfo()
95 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER); in attachInfo()
96 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE); in attachInfo()
240 if(mAuthority == null){ in onAccountChanged()
244 newUri = BluetoothMapContract.buildAccountUri(mAuthority); in onAccountChanged()
246 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId); in onAccountChanged()
263 if(mAuthority == null){ in onMessageChanged()
268 newUri = BluetoothMapContract.buildMessageUri(mAuthority); in onMessageChanged()
[all …]
/packages/apps/Settings/src/com/android/settings/accounts/
DSyncStateSwitchPreference.java37 private String mAuthority; field in SyncStateSwitchPreference
49 mAuthority = null; in SyncStateSwitchPreference()
55 mAuthority = authority; in SyncStateSwitchPreference()
149 return mAuthority; in getAuthority()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactDirectoryManagerTest.java61 private String mAuthority; field in ContactDirectoryManagerTest.MockContactDirectoryProvider
67 mAuthority = info.authority; in attachInfoForTesting()
84 if (uri.toString().equals("content://" + mAuthority + "/directories")) { in query()
88 } else if (uri.toString().startsWith("content://" + mAuthority + "/contacts")) { in query()
102 "content://" + mAuthority + "/aggregation_exceptions")) { in query()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DTypedUriMatcherImpl.java27 private final String mAuthority; field in TypedUriMatcherImpl
33 mAuthority = authority; in TypedUriMatcherImpl()
49 mUriMatcher.addURI(mAuthority, path, value.ordinal()); in addUriType()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DContentProviderTask.java45 private String mAuthority; field in ContentProviderTask
86 result = Result.newSuccess(mResolver.applyBatch(mAuthority, mOps)); in doInBackground()
97 mAuthority = authority; in run()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java98 private String mAuthority; field in BluetoothMapObexServer
118 mAuthority = account.getProviderAuthority(); in BluetoothMapObexServer()
123 mEmailFolderUri = BluetoothMapContract.buildFolderUri(mAuthority, in BluetoothMapObexServer()
141 … ContentProviderClient providerClient = mResolver.acquireUnstableContentProviderClient(mAuthority); in acquireUnstableContentProviderOrThrow()
143 throw new RemoteException("Failed to acquire provider for " + mAuthority); in acquireUnstableContentProviderOrThrow()
DBluetoothMapContentObserver.java104 private String mAuthority = null; field in BluetoothMapContentObserver
171 mAuthority = Uri.parse(account.mBase_uri).getAuthority(); in BluetoothMapContentObserver()
173 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority); in BluetoothMapContentObserver()
175 throw new RemoteException("Failed to acquire provider for " + mAuthority); in BluetoothMapContentObserver()
406 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority); in registerObserver()
408 throw new RemoteException("Failed to acquire provider for " + mAuthority); in registerObserver()
808 if(uri.getAuthority().equals(mAuthority)) { in handleMsgListChanges()
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailProvider.java6237 ContentResolver.requestSync(account, request.mAuthority, extras); in getDelayedSyncHandler()
6250 private final String mAuthority; field in EmailProvider.SyncRequestMessage
6256 mAuthority = authority; in SyncRequestMessage()
6274 && mAuthority.equals(that.mAuthority); in equals()
6279 int result = mAuthority.hashCode(); in hashCode()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java2690 private String mAuthority; field in CalendarProvider2Test.MockProvider
2695 mAuthority = authority; in MockProvider()
2717 return Uri.parse("content://" + mAuthority + "/" + mNumItems); in insert()