Searched defs:authorities (Results 1 - 2 of 2) sorted by relevance

/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(";");
/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...]

Completed in 97 milliseconds