Searched refs:originalSyncId (Results 1 - 2 of 2) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java92 * originalSyncId matches the second argument. Returns the _id field from the set of
653 String originalSyncId = values.getAsString(Events.ORIGINAL_SYNC_ID);
654 if (CalendarProvider2.isRecurrenceEvent(rrule, rdate, originalId, originalSyncId)) {
733 * locally), originalSyncId (if it originated from the server), or both (if
737 * - We could find an originalSyncId but a lookup on originalSyncId could fail (in
740 * time we set originalId in related exceptions where originalSyncId is the only
748 // Get the originalSyncId. If it's not in "values", check the database.
749 String originalSyncId = values.getAsString(Events.ORIGINAL_SYNC_ID);
750 if (originalSyncId
[all...]
H A DCalendarProvider2.java1511 String originalSyncId) {
1515 !TextUtils.isEmpty(originalSyncId));
2070 * originalId field of any events whose originalSyncId matches _sync_id.
2186 String originalSyncId = getOriginalSyncId(updatedValues
2188 if (!TextUtils.isEmpty(originalSyncId)) {
2189 updatedValues.put(Events.ORIGINAL_SYNC_ID, originalSyncId);
2644 private long getOriginalId(String originalSyncId, String calendarId) { argument
2645 if (TextUtils.isEmpty(originalSyncId) || TextUtils.isEmpty(calendarId)) {
2654 new String[] {originalSyncId, calendarId}, null);
2671 String originalSyncId
1510 isRecurrenceEvent(String rrule, String rdate, String originalId, String originalSyncId) argument
[all...]

Completed in 17 milliseconds