HomeSort by relevance Sort by last modified time
    Searched full:periodicsync (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/core/java/android/content/
PeriodicSync.java 28 public class PeriodicSync implements Parcelable {
38 /** Creates a new PeriodicSync, copying the Bundle */
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) {
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...]
PeriodicSync.aidl 19 parcelable PeriodicSync;
IContentService.aidl 24 import android.content.PeriodicSync;
64 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName);
SyncStorageEngine.java 750 public List<PeriodicSync> getPeriodicSyncs(Account account, int userId, String providerName) {
751 ArrayList<PeriodicSync> syncs = new ArrayList<PeriodicSync>();
757 syncs.add(new PeriodicSync(account, providerName, item.first,
    [all...]
ContentService.java 355 public List<PeriodicSync> getPeriodicSyncs(Account account, String providerName) {
ContentResolver.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
SyncStorageEngineTest.java 80 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> syncs = engine.getPeriodicSyncs(account, userId, authority)
    [all...]
  /prebuilts/sdk/10/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/11/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/12/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/13/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/8/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/9/
framework.aidl 11 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/14/
framework.aidl 12 parcelable android.content.PeriodicSync;
android.jar 
  /prebuilts/sdk/15/
framework.aidl 12 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/16/
framework.aidl 12 parcelable android.content.PeriodicSync;
  /prebuilts/sdk/current/
framework.aidl 12 parcelable android.content.PeriodicSync;
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
pkg_android.content.html 112 <A NAME="PeriodicSync"></A>
113 <nobr><A HREF="../../../../reference/android/content/PeriodicSync.html" target="_top"><code>PeriodicSync</code></A></nobr>
android.content.ContentResolver.html 101 <nobr><code>List&lt;PeriodicSync&gt;</code>&nbsp;<A HREF="../../../../reference/android/content/ContentResolver.html#getPeriodicSyncs(android.accounts.Account, java.lang.String)" target="_top"><code>getPeriodicSyncs</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
classes_index_additions.html 340 <A HREF="pkg_android.content.html#PeriodicSync" class="hiddenlink" target="rightframe"><b>PeriodicSync</b></A><br>
classes_index_all.html 536 <A HREF="pkg_android.content.html#PeriodicSync" class="hiddenlink" target="rightframe"><b>PeriodicSync</b></A><br>
    [all...]
alldiffs_index_additions.html     [all...]
  /frameworks/base/
Android.mk 271 frameworks/base/core/java/android/content/PeriodicSync.aidl \
  /frameworks/base/docs/html/sdk/api_diff/8/
missingSinces.txt 39 NO DOC BLOCK: android.content.PeriodicSync Class
    [all...]

Completed in 538 milliseconds

1 2