OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dirtyContacts
(Results
1 - 2
of
2
) sorted by null
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java
83
List<RawContact>
dirtyContacts
;
98
dirtyContacts
= ContactManager.getDirtyContacts(mContext, account);
102
lastSyncMarker,
dirtyContacts
);
126
if (
dirtyContacts
.size() > 0) {
127
ContactManager.clearSyncFlags(mContext,
dirtyContacts
);
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java
176
List<RawContact>
dirtyContacts
= new ArrayList<RawContact>();
204
dirtyContacts
.add(rawContact);
208
dirtyContacts
.add(rawContact);
217
return
dirtyContacts
;
247
* @param
dirtyContacts
The list of contacts that we're cleaning up
249
public static void clearSyncFlags(Context context, List<RawContact>
dirtyContacts
) {
253
for (RawContact rawContact :
dirtyContacts
) {
[
all
...]
Completed in 6549 milliseconds