Home
last modified time | relevance | path

Searched refs:dirtyContacts (Results 1 – 3 of 3) sorted by relevance

/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
DSyncAdapter.java83 List<RawContact> dirtyContacts; in onPerformSync() local
98 dirtyContacts = ContactManager.getDirtyContacts(mContext, account); in onPerformSync()
102 lastSyncMarker, dirtyContacts); in onPerformSync()
126 if (dirtyContacts.size() > 0) { in onPerformSync()
127 ContactManager.clearSyncFlags(mContext, dirtyContacts); in onPerformSync()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
DContactManager.java176 List<RawContact> dirtyContacts = new ArrayList<RawContact>(); in getDirtyContacts() local
204 dirtyContacts.add(rawContact); in getDirtyContacts()
208 dirtyContacts.add(rawContact); in getDirtyContacts()
217 return dirtyContacts; in getDirtyContacts()
249 public static void clearSyncFlags(Context context, List<RawContact> dirtyContacts) { in clearSyncFlags() argument
253 for (RawContact rawContact : dirtyContacts) { in clearSyncFlags()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
DNetworkUtilities.java161 Account account, String authtoken, long serverSyncState, List<RawContact> dirtyContacts) in syncContacts() argument
165 for (RawContact rawContact : dirtyContacts) { in syncContacts()