Searched refs:authority (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/base/core/java/android/app/
H A DSearchManager.java790 String authority = searchable.getSuggestAuthority();
791 if (authority == null) {
797 .authority(authority)
H A DActivityThread.java3988 buf.append(cpi.authority);
4198 Slog.d(TAG, "Loading provider " + info.authority + ": "
4247 Slog.v(TAG, "Installing external provider " + info.authority + ": "
4256 String names[] = PATTERN_SEMICOLON.split(info.authority);
/frameworks/base/core/java/android/content/
H A DSearchRecentSuggestionsProvider.java48 * android:authorities="your.suggestion.authority" /&gt;</pre>
57 * android:searchSuggestAuthority="your.suggestion.authority"
165 * @param authority This must match the authority that you've declared in your manifest.
173 protected void setupSuggestions(String authority, int mode) { argument
174 if (TextUtils.isEmpty(authority) ||
182 mAuthority = new String(authority);
/frameworks/base/services/java/com/android/server/am/
H A DContentProviderRecord.java70 pw.print(prefix); pw.print("name="); pw.println(info.authority);
H A DActivityManagerService.java4966 final String authority = uri.getAuthority();
4968 ContentProviderRecord cpr = mProvidersByName.get(authority);
4973 pi = pm.resolveContentProvider(authority,
5006 if (!authority.equals(targetUri.getAuthority())) {
5060 final String authority = uri.getAuthority();
5062 ContentProviderRecord cpr = mProvidersByName.get(authority);
5067 pi = pm.resolveContentProvider(authority,
5833 if (uri.getKey().getAuthority().equals(cpi.authority)) {
6224 String names[] = dst.info.authority.split(";");
6398 Slog.d(TAG, "Failed to get provider for authority '"
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java637 String authority = soundUri.getAuthority();
638 boolean isDrmAuthority = authority.equals(DrmStore.AUTHORITY);
639 if (isDrmAuthority || authority.equals(MediaStore.AUTHORITY)) {
678 String authority = soundUri.getAuthority();
679 boolean isDrmAuthority = authority.equals(DrmStore.AUTHORITY);
680 if (isDrmAuthority || authority.equals(MediaStore.AUTHORITY)) {
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java174 final String authority = uri.getAuthority();
175 if (Contacts.AUTHORITY.equals(authority)) {
177 } else if (ContactsContract.AUTHORITY.equals(authority)) {
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2701 if (p.info.authority != null
3393 if (p.info.authority != null) {
3394 String names[] = p.info.authority.split(";");
3682 if (p.info.authority != null) {
3683 String names[] = p.info.authority.split(";");
3684 p.info.authority = null;
3687 // We only want the first authority for a provider to possibly be
3689 // authority clear the syncable flag. We copy the provider before
3692 // Only do this for the second authority since the resulting provider
3699 if (p.info.authority
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java2343 p.info.authority = cpname.intern();

Completed in 259 milliseconds

12