Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapIMProvider.java59 private String mAuthority; field in BluetoothMapIMProvider
72 mAuthority = info.authority; in attachInfo()
75 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT); in attachInfo()
76 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE); in attachInfo()
77 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVERSATION, in attachInfo()
79 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVOCONTACT, in attachInfo()
91 if(D) Log.d(TAG,"attachInfo() mAuthority = " + mAuthority); in attachInfo()
106 if(mAuthority == null){ in onAccountChanged()
110 newUri = BluetoothMapContract.buildAccountUri(mAuthority); in onAccountChanged()
112 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId); in onAccountChanged()
[all …]
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/TvSettings/Settings/src/com/android/tv/settings/accounts/
DSyncStateSwitchPreference.java38 private String mAuthority; field in SyncStateSwitchPreference
49 mAuthority = null; in SyncStateSwitchPreference()
55 mAuthority = authority; in SyncStateSwitchPreference()
149 return mAuthority; in getAuthority()
/packages/apps/Settings/src/com/android/settings/accounts/
DSyncStateSwitchPreference.java38 private String mAuthority; field in SyncStateSwitchPreference
49 mAuthority = null; in SyncStateSwitchPreference()
59 mAuthority = authority; in setup()
153 return mAuthority; in getAuthority()
/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/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactDirectoryManagerTest.java62 private String mAuthority; field in ContactDirectoryManagerTest.MockContactDirectoryProvider
68 mAuthority = info.authority; in attachInfoForTesting()
85 if (uri.toString().equals("content://" + mAuthority + "/directories")) { in query()
89 } else if (uri.toString().startsWith("content://" + mAuthority + "/contacts")) { in query()
103 "content://" + mAuthority + "/aggregation_exceptions")) { in query()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java111 private String mAuthority; field in BluetoothMapObexServer
133 mAuthority = account.getProviderAuthority(); in BluetoothMapObexServer()
139 mEmailFolderUri = BluetoothMapContract.buildFolderUri(mAuthority, in BluetoothMapObexServer()
159 mResolver.acquireUnstableContentProviderClient(mAuthority); in acquireUnstableContentProviderOrThrow()
161 throw new RemoteException("Failed to acquire provider for " + mAuthority); in acquireUnstableContentProviderOrThrow()
DBluetoothMapContentObserver.java129 private String mAuthority = null; field in BluetoothMapContentObserver
282 mAuthority = Uri.parse(account.mBase_uri).getAuthority(); in BluetoothMapContentObserver()
289 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority); in BluetoothMapContentObserver()
291 throw new RemoteException("Failed to acquire provider for " + mAuthority); in BluetoothMapContentObserver()
969 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority); in registerObserver()
971 throw new RemoteException("Failed to acquire provider for " + mAuthority); in registerObserver()
1799 if(uri.getAuthority().equals(mAuthority)) { in handleMsgListChanges()
1819 if (uri.getAuthority().equals(mAuthority)) { in handleContactListChanges()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java2754 private String mAuthority; field in CalendarProvider2Test.MockProvider
2759 mAuthority = authority; in MockProvider()
2781 return Uri.parse("content://" + mAuthority + "/" + mNumItems); in insert()
/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()