HomeSort by relevance Sort by last modified time
    Searched defs:syncs (Results 1 - 5 of 5) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/model/
Sources.java 193 final SyncAdapterType[] syncs = cs.getSyncAdapterTypes(); local
196 for (SyncAdapterType sync : syncs) {
  /frameworks/base/core/tests/coretests/src/android/content/
SyncStorageEngineTest.java 61 * Test that we can create, remove and retrieve periodic syncs
88 // this should add two distinct periodic syncs for account1 and one for account2
94 List<PeriodicSync> syncs = engine.getPeriodicSyncs(account1, authority); local
96 assertEquals(2, syncs.size());
98 assertEquals(sync1, syncs.get(0));
99 assertEquals(sync3, syncs.get(1));
103 syncs = engine.getPeriodicSyncs(account1, authority);
104 assertEquals(1, syncs.size());
105 assertEquals(sync3, syncs.get(0));
107 syncs = engine.getPeriodicSyncs(account2, authority)
114 List<PeriodicSync> syncs = engine.getPeriodicSyncs(account, authority); local
178 List<PeriodicSync> syncs = engine.getPeriodicSyncs(account1, authority1); local
237 List<PeriodicSync> syncs = engine.getPeriodicSyncs(account, authority1); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
quota.h 199 u_int32_t syncs; member in struct:dqstats
  /external/kernel-headers/original/linux/
quota.h 201 int syncs; member in struct:dqstats
  /frameworks/base/core/java/android/content/
SyncStorageEngine.java 614 // the periodic syncs status to correspond to it
621 // remove any periodic syncs that match the authority and extras
664 ArrayList<PeriodicSync> syncs = new ArrayList<PeriodicSync>(); local
669 syncs.add(new PeriodicSync(account, providerName, item.first, item.second));
673 return syncs;
    [all...]

Completed in 217 milliseconds