OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dirtyContacts
(Results
1 - 3
of
3
) 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/client/
NetworkUtilities.java
157
* @param
dirtyContacts
A list of the contacts to send to the server
161
Account account, String authtoken, long serverSyncState, List<RawContact>
dirtyContacts
)
165
for (RawContact rawContact :
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 47 milliseconds