Searched refs:syncable (Results 1 - 7 of 7) sorted by path

/frameworks/base/core/java/android/content/
H A DContentResolver.java1319 * Check if this account/provider is syncable.
1320 * @return >0 if it is syncable, 0 if not, and <0 if the state isn't known yet.
1331 * Set whether this account/provider is syncable.
1332 * @param syncable >0 denotes syncable, 0 means not syncable, <0 means unknown
1334 public static void setIsSyncable(Account account, String authority, int syncable) { argument
1336 getContentService().setIsSyncable(account, authority, syncable);
H A DContentService.java367 public void setIsSyncable(Account account, String providerName, int syncable) { argument
375 account, providerName, syncable);
H A DIContentService.aidl86 * Check if this account/provider is syncable.
87 * @return >0 if it is syncable, 0 if not, and <0 if the state isn't known yet.
92 * Set whether this account/provider is syncable.
93 * @param syncable, >0 denotes syncable, 0 means not syncable, <0 means unknown
95 void setIsSyncable(in Account account, String providerName, int syncable);
H A DSyncManager.java237 // sync those that have an unknown syncable state, which will give them
238 // a chance to set their syncable state.
570 // or clear it if this authority isn't syncable
1108 pw.print(" " + (settings.syncable > 0
1109 ? "syncable"
1110 : (settings.syncable == 0 ? "not syncable" : "not initialized")));
1866 // drop this sync request if it isn't syncable
H A DSyncStorageEngine.java179 int syncable; field in class:SyncStorageEngine.AuthorityInfo
190 syncable = -1; // default to "unknown"
222 // Primary list of all syncable authorities. Also our global lock.
440 return authority.syncable;
448 return authority.syncable;
455 public void setIsSyncable(Account account, String providerName, int syncable) { argument
456 if (syncable > 1) {
457 syncable = 1;
458 } else if (syncable < -1) {
459 syncable
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java3376 public boolean syncable; field in class:PackageParser.Provider
3382 syncable = false;
3388 this.syncable = existingProvider.syncable;
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2682 if (p.syncable
3681 p.syncable = p.info.isSyncable;
3686 if (j == 1 && p.syncable) {
3688 // syncable, so if we already added this provider using a different
3689 // authority clear the syncable flag. We copy the provider before
3695 p.syncable = false;

Completed in 123 milliseconds