Searched defs:syncable (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java910 public void setIsSyncable(Account account, String providerName, int syncable) { argument
917 syncable = normalizeSyncable(syncable);
926 account, userId, providerName, syncable, callingUid);
1265 private static int normalizeSyncable(int syncable) { argument
1266 if (syncable > 0) {
1268 } else if (syncable == 0) {
H A DSyncStorageEngine.java237 * The syncable state is undefined.
258 * The adapter is syncable but still requires an initialization sync. For example an adapter
265 * The adapter is syncable but does not have access to the synced account and needs a
273 int syncable; field in class:SyncStorageEngine.AuthorityInfo
293 syncable = toCopy.syncable;
313 syncable = NOT_INITIALIZED; // default to "unknown"
326 return target + ", enabled=" + enabled + ", syncable=" + syncable + ", backoff="
420 // Primary list of all syncable authoritie
745 setIsSyncable(Account account, int userId, String providerName, int syncable, int callingUid) argument
757 setSyncableStateForEndPoint(EndPoint target, int syncable, int callingUid) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentResolver.java2604 * Check if this account/provider is syncable.
2607 * @return >0 if it is syncable, 0 if not, and <0 if the state isn't known yet.
2631 * Set whether this account/provider is syncable.
2634 * @param syncable >0 denotes syncable, 0 means not syncable, <0 means unknown
2636 public static void setIsSyncable(Account account, String authority, int syncable) { argument
2638 getContentService().setIsSyncable(account, authority, syncable);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java7711 public boolean syncable; field in class:PackageParser.Provider
7717 syncable = false;
7723 this.syncable = existingProvider.syncable;
7750 dest.writeInt((syncable) ? 1 : 0);
7756 syncable = (in.readInt() == 1);

Completed in 72 milliseconds