HomeSort by relevance Sort by last modified time
    Searched refs:mAuthority (Results 1 - 25 of 36) sorted by null

1 2

  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 34 private String mAuthority;
46 return mAuthority;
67 mAuthority = null;
83 mAuthority = authority;
103 mAuthority = null;
119 mAuthority = authority;
MockContentProvider.java 63 private final String mAuthority;
99 mAuthority = authority;
103 URL_MATCHER.addURI(mAuthority, "testtable1", TESTTABLE1);
104 URL_MATCHER.addURI(mAuthority, "testtable1/#", TESTTABLE1_ID);
105 URL_MATCHER.addURI(mAuthority, "testtable1/cross", TESTTABLE1_CROSS);
106 URL_MATCHER.addURI(mAuthority, "testtable2", TESTTABLE2);
107 URL_MATCHER.addURI(mAuthority, "testtable2/#", TESTTABLE2_ID);
108 URL_MATCHER.addURI(mAuthority, "self", SELF_ID);
109 URL_MATCHER.addURI(mAuthority, "crash", CRASH_ID);
217 testUri = Uri.parse("content://" + mAuthority + "/testtable1")
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcherImpl.java 27 private final String mAuthority;
33 mAuthority = authority;
49 mUriMatcher.addURI(mAuthority, path, value.ordinal());
  /frameworks/base/core/java/android/provider/
SearchIndexablesProvider.java 67 private String mAuthority;
79 mAuthority = info.authority;
82 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
DocumentsProvider.java 138 private String mAuthority;
147 mAuthority = info.authority;
150 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
151 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
152 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
153 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
154 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
155 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
156 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
157 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE)
    [all...]
SearchRecentSuggestions.java 111 private final String mAuthority;
141 mAuthority = new String(authority);
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 27 private final String mAuthority;
42 mAuthority = authority;
120 return mAuthority;
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 43 private String mAuthority;
58 mAuthority = extras.getString("authority");
122 ContentResolver.requestSync(mAccount, mAuthority, extras);
131 ContentResolver.requestSync(mAccount, mAuthority, extras);
SyncRequest.java 34 private final String mAuthority;
92 return mAuthority;
146 parcel.writeString(mAuthority);
158 mAuthority = in.readString();
166 mAuthority = b.mAuthority;
248 private String mAuthority;
361 mAuthority = authority;
AbstractThreadedSyncAdapter.java 227 private final String mAuthority;
236 mAuthority = authority;
249 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
257 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority);
260 mAuthority, provider, syncResult);
SearchRecentSuggestionsProvider.java 78 private String mAuthority;
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) {
ContentProvider.java 104 private String mAuthority;
660 mAuthority = authorities;
663 mAuthority = null;
671 if (mAuthority != null) {
672 return mAuthority.equals(authority);
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateSwitchPreference.java 37 private String mAuthority;
49 mAuthority = null;
55 mAuthority = authority;
149 return mAuthority;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 45 private String mAuthority;
86 result = Result.newSuccess(mResolver.applyBatch(mAuthority, mOps));
97 mAuthority = authority;
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 35 private String mAuthority = null;
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/
SyncOperationTest.java 45 String mAuthority;
51 mAuthority = "authority1";
169 mAuthority, withExpedited, fiveSecondsFromNow, twoSecondsFlex,
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapEmailProvider.java 59 private String mAuthority;
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...]
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/signin/
SyncStatusHelperTest.java 113 private String mAuthority;
133 mAuthority = SyncStatusHelper.get(getInstrumentation().getTargetContext())
164 mSyncContentResolverDelegate.setIsSyncable(mTestAccount, mAuthority, 1);
166 mSyncContentResolverDelegate.setSyncAutomatically(mTestAccount, mAuthority, true);
173 mSyncContentResolverDelegate.setSyncAutomatically(mTestAccount, mAuthority, false);
180 mSyncContentResolverDelegate.setSyncAutomatically(mTestAccount, mAuthority, true);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 61 private String mAuthority;
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")) {
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 103 private String mAuthority;
107 mAuthority = info.authority;
125 final Uri uri = DocumentsContract.buildRootsUri(mAuthority);
  /frameworks/support/v4/java/android/support/v4/content/
FileProvider.java 631 private final String mAuthority;
635 mAuthority = authority;
693 .authority(mAuthority).encodedPath(path).build();
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 98 private String mAuthority;
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);
    [all...]
BluetoothMapContentObserver.java 104 private String mAuthority = null;
171 mAuthority = Uri.parse(account.mBase_uri).getAuthority();
173 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority);
175 throw new RemoteException("Failed to acquire provider for " + mAuthority);
406 mProviderClient = mResolver.acquireUnstableContentProviderClient(mAuthority);
408 throw new RemoteException("Failed to acquire provider for " + mAuthority);
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java     [all...]

Completed in 687 milliseconds

1 2