Home | History | Annotate | Download | only in am

Lines Matching defs:authority

9448     private ProviderInfo getProviderInfoLocked(String authority, int userHandle, int pmFlags) {
9450 ContentProviderRecord cpr = mProviderMap.getProviderByName(authority, userHandle);
9456 authority
9594 // Exempted authority for
9605 final String authority = grantUri.uri.getAuthority();
9606 final ProviderInfo pi = getProviderInfoLocked(authority, grantUri.sourceUserId,
9764 final String authority = grantUri.uri.getAuthority();
9765 final ProviderInfo pi = getProviderInfoLocked(authority, grantUri.sourceUserId,
10000 final String authority = grantUri.uri.getAuthority();
10001 final ProviderInfo pi = getProviderInfoLocked(authority, grantUri.sourceUserId,
10102 final String authority = uri.getAuthority();
10103 final ProviderInfo pi = getProviderInfoLocked(authority, userId,
10154 if (Downloads.Impl.AUTHORITY.equals(perm.uri.uri.getAuthority())
11874 * at the given authority and user.
11876 public String checkContentProviderAccess(String authority, int userId) {
11885 cpi = AppGlobals.getPackageManager().resolveContentProvider(authority,
11894 return "Failed to find provider " + authority + " for user " + userId
11895 + "; expected to find a valid ContentProvider for this authority";
11931 ALLOW_NON_FULL, "checkContentProviderPermissionLocked " + cpi.authority, null);
11934 // up different than our initial check for the authority. This is because
12009 * Returns true if the uri authority is one of the authorities specified in the provider.
12013 String cpiAuth = cpi.authority;
12318 + cpi.authority + "' before system providers are installed!");
12697 String names[] = dst.info.authority.split(";");
12723 src.info.authority);
13235 Slog.d(TAG, "Failed to get provider for authority '" + name + "'");
20037 String names[] = cpr.info.authority.split(";");
24738 String authority) {
24744 Long lastReported = userState.mProviderLastReportedFg.get(authority);
24749 authority, providerPkgName, app.userId);
24751 userState.mProviderLastReportedFg.put(authority, now);
26312 public String checkContentProviderAccess(String authority, int userId) {
26313 return ActivityManagerService.this.checkContentProviderAccess(authority, userId);