Home | History | Annotate | Download | only in client

Lines Matching refs:rawContact

160     public static List<RawContact> syncContacts(
161 Account account, String authtoken, long serverSyncState, List<RawContact> dirtyContacts)
165 for (RawContact rawContact : dirtyContacts) {
166 jsonContacts.add(rawContact.toJSONObject());
174 final ArrayList<RawContact> serverDirtyList = new ArrayList<RawContact>();
202 RawContact rawContact = RawContact.valueOf(serverContacts.getJSONObject(i));
203 if (rawContact != null) {
204 serverDirtyList.add(rawContact);