Searched refs:authorities (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/com/android/server/backup/
H A DAccountSyncSettingsBackupHelper.java72 private static final String KEY_ACCOUNT_AUTHORITIES = "authorities";
126 // Create a map of Account types to authorities. Later this will make it easier for us to
148 List<String> authorities = accountTypeToAuthorities.get(account.type);
150 // We ignore Accounts that don't have any authorities because there would be no sync
152 if (authorities == null || authorities.isEmpty()) {
160 // Add authorities for this Account type and check whether or not sync is enabled.
162 for (String authority : authorities) {
331 // Restore authorities.
332 JSONArray authorities
[all...]
/frameworks/base/tools/aapt2/
H A DManifestMerger_test.cpp60 android:authorities="com.android.library.documents"
/frameworks/base/core/java/android/content/
H A DContentProvider.java726 * Change the authorities of the ContentProvider.
730 * @param authorities the semi-colon separated authorities of the ContentProvider.
732 protected final void setAuthorities(String authorities) { argument
733 if (authorities != null) {
734 if (authorities.indexOf(';') == -1) {
735 mAuthority = authorities;
739 mAuthorities = authorities.split(";");
H A DIntentFilter.java72 * To specify a path, you also must specify both one or more authorities and
1022 * authority to be considered. If any authorities are
1024 * them. If no authorities are included, then only the scheme must match.
1053 * Return the number of data authorities in the filter.
1068 * filter does not include any authorities, false will <em>always</em> be
1095 * Return an iterator over the filter's data authorities.
1104 * one or more authorities (via {@link #addDataAuthority}) for the
1286 final ArrayList<AuthorityEntry> authorities = mDataAuthorities;
1287 if (authorities != null) {
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java217 final HashMap<String, AuthorityInfo> authorities = field in class:SyncStorageEngine.AccountInfo
431 // Primary list of all syncable authorities. Also our global lock.
852 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
873 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
1131 * authorities. If there are no more pending syncs for the same target,
1217 for (AuthorityInfo auth : acc.authorities.values()) {
1485 * Return an array of the current sync status for all authorities. Note
1513 * Return a copy of all authorities with their corresponding sync status
1552 /** Return true if the pending status is true of any matching authorities. */
1574 * Return an array of the current sync status for all authorities
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DBaseActivity.java256 List<String> authorities = new ArrayList<>();
264 authorities.add(provider.authority);
270 return authorities;
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java734 int authorities = filter.countDataAuthorities();
735 for (int z = 0; z < authorities; z++) {

Completed in 309 milliseconds