Home | History | Annotate | Download | only in browse

Lines Matching defs:authority

850      * changing the authority to ours, but otherwise leaving the Uri intact.
879 String authority = uri.getAuthority();
881 if (!authority.equals(ConversationProvider.AUTHORITY)) {
885 Uri.Builder builder = new Uri.Builder().scheme(uri.getScheme()).authority(path.get(0));
1423 public static String AUTHORITY;
1429 * Allows the implementing provider to specify the authority that should be used.
1436 AUTHORITY = getAuthority();
1437 sUriPrefix = "content://" + AUTHORITY + "/";
1609 String authority = underlyingUri.getAuthority();
1610 ArrayList<ContentProviderOperation> authOps = batchMap.get(authority);
1613 batchMap.put(authority, authOps);
1635 for (final String authority: batchMap.keySet()) {
1636 final ArrayList<ContentProviderOperation> opList = batchMap.get(authority);
1639 mResolver.applyBatch(authority, opList);
1648 mResolver.applyBatch(authority, opList);