Searched refs:PeriodicSync (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/content/
H A DPeriodicSync.aidl19 parcelable PeriodicSync;
H A DPeriodicSync.java28 public class PeriodicSync implements Parcelable { class in inherits:Parcelable
38 /** Creates a new PeriodicSync, copying the Bundle */
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) { method in class:PeriodicSync
57 public static final Creator<PeriodicSync> CREATOR = new Creator<PeriodicSync>() {
58 public PeriodicSync createFromParcel(Parcel source) {
59 return new PeriodicSync(Account.CREATOR.createFromParcel(source),
63 public PeriodicSync[] newArray(int size) {
64 return new PeriodicSync[size];
73 if (!(o instanceof PeriodicSync)) {
[all...]
H A DIContentService.aidl24 import android.content.PeriodicSync;
80 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName);
H A DSyncStorageEngine.java766 public List<PeriodicSync> getPeriodicSyncs(Account account, int userId, String providerName) {
767 ArrayList<PeriodicSync> syncs = new ArrayList<PeriodicSync>();
773 syncs.add(new PeriodicSync(account, providerName, item.first,
H A DContentResolver.java1556 * @return a list of PeriodicSync objects. This list may be empty but will never be null.
1558 public static List<PeriodicSync> getPeriodicSyncs(Account account, String authority) {
H A DContentService.java422 public List<PeriodicSync> getPeriodicSyncs(Account account, String providerName) {
/frameworks/base/core/tests/coretests/src/android/content/
H A DSyncStorageEngineTest.java80 PeriodicSync sync1 = new PeriodicSync(account1, authority, extras1, period1);
81 PeriodicSync sync2 = new PeriodicSync(account1, authority, extras2, period1);
82 PeriodicSync sync3 = new PeriodicSync(account1, authority, extras2, period2);
83 PeriodicSync sync4 = new PeriodicSync(account2, authority, extras2, period2);
102 List<PeriodicSync> syncs = engine.getPeriodicSyncs(account1, 0, authority);
128 List<PeriodicSync> sync
[all...]
/frameworks/base/
H A DAndroid.mk278 frameworks/base/core/java/android/content/PeriodicSync.aidl \

Completed in 119 milliseconds