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
);
138
if (
dirtyContacts
.size() > 0) {
139
ContactManager.clearSyncFlags(mContext,
dirtyContacts
);
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java
185
List<RawContact>
dirtyContacts
= new ArrayList<RawContact>();
213
dirtyContacts
.add(rawContact);
217
dirtyContacts
.add(rawContact);
226
return
dirtyContacts
;
293
* @param
dirtyContacts
The list of contacts that we're cleaning up
295
public static void clearSyncFlags(Context context, List<RawContact>
dirtyContacts
) {
299
for (RawContact rawContact :
dirtyContacts
) {
[
all
...]
Completed in 124 milliseconds