Searched refs:AUTHORITY (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/provider/
H A DTestProvider.java25 final static String AUTHORITY = "android.provider.TestProvider"; field in class:TestProvider
30 setupSuggestions(AUTHORITY, MODE);
H A DSearchRecentSuggestionsProviderTest.java43 super(TestProvider.class, TestProvider.AUTHORITY);
56 TestProvider.AUTHORITY, TestProvider.MODE);
379 String uriStr = "content://" + TestProvider.AUTHORITY +
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DHbpcdLookup.java26 public static final String AUTHORITY = "hbpcd_lookup"; field in class:HbpcdLookup
29 Uri.parse("content://" + AUTHORITY);
47 Uri.parse("content://" + AUTHORITY + "/" + PATH_MCC_IDD);
60 Uri.parse("content://" + AUTHORITY + "/" + PATH_MCC_LOOKUP_TABLE);
80 Uri.parse("content://" + AUTHORITY + "/" + PATH_MCC_SID_CONFLICT);
93 Uri.parse("content://" + AUTHORITY + "/" + PATH_MCC_SID_RANGE);
106 Uri.parse("content://" + AUTHORITY + "/" + PATH_ARBITRARY_MCC_SID_MATCH);
119 Uri.parse("content://" + AUTHORITY + "/" + PATH_NANP_AREA_CODE);
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DMountReceiver.java28 .acquireContentProviderClient(ExternalStorageProvider.AUTHORITY);
H A DExternalStorageProvider.java64 public static final String AUTHORITY = "com.android.externalstorage.documents"; field in class:ExternalStorageProvider
67 new Uri.Builder().scheme(ContentResolver.SCHEME_CONTENT).authority(AUTHORITY).build();
610 AUTHORITY, docId);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsProvider.java54 private static final String AUTHORITY = "com.android.documentsui.recents"; field in class:RecentsProvider
66 sMatcher.addURI(AUTHORITY, "recent", URI_RECENT);
68 sMatcher.addURI(AUTHORITY, "state/*/*/*", URI_STATE);
70 sMatcher.addURI(AUTHORITY, "resume/*", URI_RESUME);
84 public static final String AUTHORITY = "authority"; field in class:RecentsProvider.StateColumns
100 .authority(AUTHORITY).appendPath("recent").build();
104 return new Uri.Builder().scheme(ContentResolver.SCHEME_CONTENT).authority(AUTHORITY)
111 .authority(AUTHORITY).appendPath("resume").appendPath(packageName).build();
138 StateColumns.AUTHORITY + " TEXT," +
143 "PRIMARY KEY (" + StateColumns.AUTHORITY
[all...]
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DBrowserService.java73 public static final String AUTHORITY = "com.example.android.automotive.musicplayer"; field in class:BrowserService
74 public static final Uri BASE_URI = Uri.parse("content://" + AUTHORITY);
86 sUriMatcher.addURI(AUTHORITY, BROWSE_ROOT_BASE_PATH, BROWSE_ROOT);
87 sUriMatcher.addURI(AUTHORITY, NOW_PLAYING_PATH, NOW_PLAYING);
88 sUriMatcher.addURI(AUTHORITY, PIANO_BASE_PATH, PIANO);
89 sUriMatcher.addURI(AUTHORITY, VOICE_BASE_PATH, VOICE);
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java35 public static final String AUTHORITY = "user_dictionary"; field in class:UserDictionary
41 Uri.parse("content://" + AUTHORITY);
54 Uri.parse("content://" + AUTHORITY + "/words");
H A DCalendarContract.java158 public static final String AUTHORITY = "com.android.calendar"; field in class:CalendarContract
163 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
493 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY +
693 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/calendars");
856 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/attendees");
1276 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY +
1640 Uri.parse("content://" + AUTHORITY + "/events");
1648 Uri.parse("content://" + AUTHORITY + "/exception");
1796 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY +
1804 Uri.parse("content://" + AUTHORITY
[all...]
H A DContactsInternal.java49 matcher.addURI(ContactsContract.AUTHORITY, "contacts/lookup/*/#", CONTACTS_URI_LOOKUP_ID);
H A DVoicemailContract.java81 public static final String AUTHORITY = "com.android.voicemail"; field in class:VoicemailContract
124 Uri.parse("content://" + AUTHORITY + "/voicemail");
334 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/status");
H A DBrowserContract.java46 public static final String AUTHORITY = "com.android.browser"; field in class:BrowserContract
49 public static final Uri AUTHORITY_URI = Uri.parse("content://" + AUTHORITY);
H A DCallLog.java54 public static final String AUTHORITY = "call_log"; field in class:CallLog
60 Uri.parse("content://" + AUTHORITY);
H A DContacts.java52 public static final String AUTHORITY = "contacts"; field in class:Contacts
59 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
H A DMediaStore.java54 public static final String AUTHORITY = "media"; field in class:MediaStore
56 private static final String CONTENT_AUTHORITY_SLASH = "content://" + AUTHORITY + "/";
H A DSettings.java1233 public static final String AUTHORITY = "settings"; field in class:Settings
1453 Uri.parse("content://" + AUTHORITY + "/system");
3740 Uri.parse("content://" + AUTHORITY + "/secure");
5959 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/global");
8097 Uri.parse("content://" + AUTHORITY + "/bookmarks");
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DCopyTest.java111 private static String AUTHORITY = "com.android.documentsui.stubprovider"; field in class:CopyTest
127 mClient = mResolver.acquireContentProviderClient(AUTHORITY);
133 Uri queryUri = DocumentsContract.buildRootsUri(AUTHORITY);
138 mRoots.add(RootInfo.fromRootsCursor(AUTHORITY, cursor));
251 final Uri dst = DocumentsContract.buildDocumentUri(AUTHORITY, mRoots.get(1).documentId);
265 final Uri queryUri = DocumentsContract.buildChildDocumentsUri(AUTHORITY,
319 info.authority = AUTHORITY;
327 mResolver.addProvider(AUTHORITY, mStorage);
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
H A DMusicProvider.java162 pianoBuilder.authority(BrowserService.AUTHORITY);
173 voiceBuilder.authority(BrowserService.AUTHORITY);
194 builder.authority(BrowserService.AUTHORITY);
219 builder.authority(BrowserService.AUTHORITY);
244 builder.authority(BrowserService.AUTHORITY);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java27 static final String AUTHORITY = "com.google.android.test.activity.single_user"; field in class:SingleUserProvider
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportReceiver.java63 private static final String AUTHORITY = "com.android.shell"; field in class:BugreportReceiver
112 final Uri bugreportUri = FileProvider.getUriForFile(context, AUTHORITY, bugreportFile);
113 final Uri screenshotUri = FileProvider.getUriForFile(context, AUTHORITY, screenshotFile);
161 final Uri bugreportUri = FileProvider.getUriForFile(context, AUTHORITY, bugreportFile);
162 final Uri screenshotUri = FileProvider.getUriForFile(context, AUTHORITY, screenshotFile);
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java53 public static final String AUTHORITY = "android.media.tv"; field in class:TvContract
128 return new Uri.Builder().scheme(ContentResolver.SCHEME_CONTENT).authority(AUTHORITY)
287 && AUTHORITY.equals(uri.getAuthority());
351 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
930 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
1351 Uri.parse("content://" + AUTHORITY + "/watched_program");
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCommitter.java84 ContactsContract.AUTHORITY, operationList);
H A DVCardComposer.java353 if (!ContactsContract.AUTHORITY.equals(contentUri.getAuthority())) {
/frameworks/base/media/java/android/media/
H A DRingtone.java215 if (Settings.AUTHORITY.equals(authority)) {
228 if (MediaStore.AUTHORITY.equals(authority)) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DDefaultPermissionGrantPolicy.java229 syncAdapterPackagesProvider.getPackages(ContactsContract.AUTHORITY, userId) : null;
231 syncAdapterPackagesProvider.getPackages(CalendarContract.AUTHORITY, userId) : null;
276 MediaStore.AUTHORITY, userId);
389 CalendarContract.AUTHORITY, userId);
432 ContactsContract.AUTHORITY, userId);

Completed in 2916 milliseconds

12